-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPackage.swift
More file actions
29 lines (27 loc) · 1.01 KB
/
Package.swift
File metadata and controls
29 lines (27 loc) · 1.01 KB
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.5
import PackageDescription
// BEGIN KMMBRIDGE VARIABLES BLOCK (do not edit)
let remoteKotlinUrl = "https://sdk-assets.realtime.cloudflare.com/RealtimeKit-2.0.0-51631f14-d2d9-4bcb-81b0-37432335f7af.xcframework.zip"
let remoteKotlinChecksum = "bcea9a084fd4072df26275c8cbc397e1b9e78f09c9d337b67f7ac3d6c23ee5dc"
let packageName = "RealtimeKit"
// END KMMBRIDGE BLOCK
let package = Package(
name: "RealtimeKit",
platforms: [.iOS(.v13)],
products: [
.library(name: packageName, targets: [packageName, "RTKWebRTC"]),
.library(name: "RTKWebRTC", targets: ["RTKWebRTC"]),
],
targets: [
.binaryTarget(
name: "RTKWebRTC",
url: "https://sdk-assets.realtime.cloudflare.com/RTKWebRTC-137.7151.10.2.zip",
checksum: "2a56715d11dc3cbb722b43fc712fec68d9838b68b7297076e7ac3d0f8e9b6ccb"
),
.binaryTarget(
name: packageName,
url: remoteKotlinUrl,
checksum: remoteKotlinChecksum
),
]
)