forked from joreilly/Confetti
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
29 lines (27 loc) · 762 Bytes
/
Package.swift
File metadata and controls
29 lines (27 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// swift-tools-version:5.3
import PackageDescription
// BEGIN KMMBRIDGE VARIABLES BLOCK (do not edit)
let remoteKotlinUrl = "https://repo.repsy.io/mvn/joreilly/confetti/Confetti/shared-kmmbridge/0.8.14/shared-kmmbridge-0.8.14.zip"
let remoteKotlinChecksum = "c7ca2aebe004a16e7562e25456b044778a4b4d2fc7a4f0bb47b440b6ba5cfba3"
let packageName = "ConfettiKit"
// END KMMBRIDGE BLOCK
let package = Package(
name: packageName,
platforms: [
.iOS(.v13)
],
products: [
.library(
name: packageName,
targets: [packageName]
),
],
targets: [
.binaryTarget(
name: packageName,
url: remoteKotlinUrl,
checksum: remoteKotlinChecksum
)
,
]
)