-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathPackage.swift
More file actions
41 lines (40 loc) · 1.21 KB
/
Package.swift
File metadata and controls
41 lines (40 loc) · 1.21 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
30
31
32
33
34
35
36
37
38
39
40
41
// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "Crisp",
platforms: [.iOS(.v13)],
products: [
.library(name: "Crisp", targets: ["CrispTarget"]),
.library(name: "CrispWebRTC", targets: ["CrispWebRTCTarget"])
],
targets: [
.target(
name: "CrispTarget",
dependencies: [
.target(name: "Crisp")
]
),
.target(
name: "CrispWebRTCTarget",
dependencies: [
.target(name: "CrispWebRTC"),
.target(name: "WebRTC")
]
),
.binaryTarget(
name: "Crisp",
url: "https://github.com/crisp-im/crisp-sdk-ios/releases/download/2.13.0/Crisp_2.13.0.zip",
checksum: "97f6c1a50eae4c056be479078039a52c434d72475071e39b1c23fbaa5bdb98df"
),
.binaryTarget(
name: "CrispWebRTC",
url: "https://github.com/crisp-im/crisp-sdk-ios/releases/download/2.13.0/CrispWebRTC_2.13.0.zip",
checksum: "2d736ad3c4584cc3e8909927e50d9fa42efd7f54db02ffebf3ec5c6456daa5f9"
),
.binaryTarget(
name: "WebRTC",
url: "https://github.com/crisp-im/crisp-sdk-ios/releases/download/2.13.0/WebRTC_2.13.0.zip",
checksum: "52f73dc7fa80fcfe219ef6b6c11ba9e1795786b88c43832fa4d8f07fc509204b"
),
]
)