-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
30 lines (30 loc) · 1.2 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
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "SendbirdLiveSDK",
platforms: [.iOS(.v12)],
products: [
.library(
name: "SendbirdLiveSDK",
targets: ["SendbirdLiveSDKTarget"]),
],
dependencies: [
.package(url: "https://github.com/sendbird/sendbird-webrtc-ios", "1.8.1"..<"1.9.0"),
.package(url: "https://github.com/sendbird/sendbird-chat-sdk-ios", from: "4.21.3")
],
targets: [
.binaryTarget(
name: "SendbirdLiveSDK",
url: "https://github.com/sendbird/sendbird-live-sdk-ios/releases/download/v1.2.8/SendbirdLiveSDK.xcframework.zip",
checksum: "c25161e027db8af4ae0134210da30ae026b17ff67d281900d2c54a5d89de8a2c"
),
.target(name: "SendbirdLiveSDKTarget",
dependencies: [
.target(name: "SendbirdLiveSDK"),
.product(name: "WebRTC", package: "sendbird-webrtc-ios"),
.product(name: "SendbirdChatSDK", package: "sendbird-chat-sdk-ios")
],
path: "Sources"),
]
)