-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
50 lines (48 loc) · 1.73 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
48
49
50
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "GliaSDK",
platforms: [
.iOS(.v13)
],
products: [
.library(
name: "GliaSDK",
targets: ["GliaSDK"])
],
dependencies: [
.package(url: "https://github.com/pointfreeco/swift-dependencies", .upToNextMajor(from: "1.0.0"))
],
targets: [
.binaryTarget(
name: "GliaCoreDependency",
url: "https://github.com/salemove/ios-bundle/releases/download/0.35.0/GliaCoreDependency.xcframework.zip",
checksum: "8e1746da612dad8a130fd872b3058511121b7c6f29e3b0351ecbbffa96971489"
),
.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/salemove/ios-bundle/releases/download/0.33.0/WebRTC.xcframework.zip",
checksum: "f76e410f608d96989ba0312e099697703a37b4414f8f46bb9e30c3d9b4291a52"
),
.binaryTarget(
name: "GliaCoreSDK",
url: "https://github.com/yurii-glia/pub/releases/download/1.0/GliaCoreSDK.xcframework.zip",
checksum: "d9c15e0fae3accb3a1318a3680e876fa89a25c3f099ed330cb5a7443a5269f85"
),
.target(
name: "GliaSDK",
dependencies: [
"GliaCoreSDK",
"GliaCoreDependency",
"TwilioVoice",
"WebRTC",
.product(name: "Dependencies", package: "swift-dependencies")
]
)
]
)