We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73da5ed commit b54de96Copy full SHA for b54de96
Package.swift
@@ -0,0 +1,27 @@
1
+// swift-tools-version:5.3
2
+import PackageDescription
3
+
4
+let remoteKotlinUrl = "https://maven.pkg.github.com/touchlab-lab/KMMBridgeModule/KaMPKit/shared-kmmbridge/1.3.0/shared-kmmbridge-1.3.0.zip"
5
+let remoteKotlinChecksum = "41df441d7c2733bd5fb716b1c3d4323cbed30def98410e8a0165e4e595d9da68"
6
+let packageName = "shared"
7
8
+let package = Package(
9
+ name: packageName,
10
+ platforms: [
11
+ .iOS(.v13)
12
+ ],
13
+ products: [
14
+ .library(
15
16
+ targets: [packageName]
17
+ ),
18
19
+ targets: [
20
+ .binaryTarget(
21
22
+ url: remoteKotlinUrl,
23
+ checksum: remoteKotlinChecksum
24
+ )
25
+ ,
26
+ ]
27
+)
0 commit comments