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 bbb892f commit 480b057Copy full SHA for 480b057
Package.swift
@@ -0,0 +1,27 @@
1
+// swift-tools-version:5.3
2
+import PackageDescription
3
+
4
+let remoteKotlinUrl = "https://api.github.com/repos/joreilly/Confetti/releases/assets/81446643.zip"
5
+let remoteKotlinChecksum = "86b6465121bbdbcf2f100fc1f8e2a01acc2ba15e21c19b58ffc717a89ccc6e3c"
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