We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a2fb0b commit 5818e12Copy full SHA for 5818e12
Package.swift
@@ -1,7 +1,11 @@
1
// swift-tools-version:5.3
2
import PackageDescription
3
4
+// BEGIN KMMBRIDGE VARIABLES BLOCK (do not edit)
5
+let remoteKotlinUrl = "https://maven.pkg.github.com/carlosmonzon/rest-protobuf/rest-protobuf/shared-kmmbridge/0.1.1/shared-kmmbridge-0.1.1.zip"
6
+let remoteKotlinChecksum = "ca593907d57097357a07173441f302bca77a8c5f3f2ecb74427ea236a0cbf5c3"
7
let packageName = "DataKit"
8
+// END KMMBRIDGE BLOCK
9
10
let package = Package(
11
name: packageName,
@@ -17,7 +21,8 @@ let package = Package(
17
21
targets: [
18
22
.binaryTarget(
19
23
20
- path: "./shared/build/XCFrameworks/debug/\(packageName).xcframework"
24
+ url: remoteKotlinUrl,
25
+ checksum: remoteKotlinChecksum
26
)
27
,
28
]
0 commit comments