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 493b05e commit 20b8f53Copy full SHA for 20b8f53
Package.swift
@@ -0,0 +1,27 @@
1
+// swift-tools-version:5.3
2
+import PackageDescription
3
+
4
+let remoteKotlinUrl = "https://api.github.com/repos/MobileNativeFoundation/Store/releases/assets/97022335.zip"
5
+let remoteKotlinChecksum = "00c98017078b7a620586185bba2f175b7cba7a8c0d7bcb5e306c28631e25fe1b"
6
+let packageName = "cache"
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