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 022bdb7 commit de760a8Copy full SHA for de760a8
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/98144675.zip"
5
+let remoteKotlinChecksum = "0ede6ec06d80d4c2d2c52393730c9ef05ee60f8784ca730a4a441170c79581f9"
6
+let packageName = "store"
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