-
Notifications
You must be signed in to change notification settings - Fork 2
/
Package.swift
47 lines (45 loc) · 1.54 KB
/
Package.swift
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "GliaSDK",
platforms: [
.iOS(.v13)
],
products: [
.library(
name: "GliaSDK",
targets: ["GliaSDK"]
)
],
targets: [
.binaryTarget(
name: "GliaCoreDependency",
url: "https://github.com/salemove/ios-bundle/releases/download/1.3.5/GliaCoreDependency.xcframework.zip",
checksum: "a7ca12542bc8470af16632311e96a1925f102e0ee6d36f5c86e422aebe655af1"
),
.binaryTarget(
name: "TwilioVoice",
url: "https://github.com/salemove/ios-bundle/releases/download/0.33.0/TwilioVoice.xcframework.zip",
checksum: "34288e0876a8840fa51d3813046cf1f40a5939079bea23ace5afe6e752f12f9e"
),
.binaryTarget(
name: "WebRTC",
url: "https://github.com/stasel/WebRTC/releases/download/119.0.0/WebRTC-M119.xcframework.zip",
checksum: "60737020738e76f2200f3f2c12a32f260d116f858a2e1ff33c48973ddd3e1c97"
),
.binaryTarget(
name: "GliaCoreSDK",
url: "https://github.com/salemove/ios-bundle/releases/download/2.0.4/GliaCoreSDK.xcframework.zip",
checksum: "67eea14b995b29df2fffaedcb6a043f12a0f43ab27e8655b96f596cb4b3c6992"
),
.target(
name: "GliaSDK",
dependencies: [
"GliaCoreSDK",
"GliaCoreDependency",
"TwilioVoice",
"WebRTC"
]
)
]
)