Skip to content
This repository was archived by the owner on Mar 6, 2024. It is now read-only.

Commit 7705c0f

Browse files
runnerrunner
authored andcommitted
KMM SPM package release for 0.2.0-alpha0.2
1 parent bee2ca1 commit 7705c0f

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

Package.swift

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// swift-tools-version:5.3
2+
import PackageDescription
3+
4+
let remoteKotlinUrl = "https://api.github.com/repos/dropbox/componentbox/releases/assets/86646703.zip"
5+
let remoteKotlinChecksum = "2d49ed0b97550502133af431da5424fc3206bcb44799b857d007255d9cb72943"
6+
let packageName = "componentbox"
7+
8+
let package = Package(
9+
name: packageName,
10+
platforms: [
11+
.iOS(.v13)
12+
],
13+
products: [
14+
.library(
15+
name: packageName,
16+
targets: [packageName]
17+
),
18+
],
19+
targets: [
20+
.binaryTarget(
21+
name: packageName,
22+
url: remoteKotlinUrl,
23+
checksum: remoteKotlinChecksum
24+
)
25+
,
26+
]
27+
)

0 commit comments

Comments
 (0)