-
Notifications
You must be signed in to change notification settings - Fork 3
/
Package.swift
26 lines (24 loc) · 993 Bytes
/
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
// swift-tools-version:5.8
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "swift-fcsdk-ios",
platforms: [.iOS(.v11)],
products: [
.library(
name: "FCSDKiOS",
type: .static,
targets: ["SwiftFCSDKiOS"]),
],
dependencies: [],
targets: [
.target(
name: "SwiftFCSDKiOS",
dependencies: [
"FCSDKiOS",
"WebRTC"
]),
.binaryTarget(name: "FCSDKiOS", url: "https://swift-sdk.s3.us-east-2.amazonaws.com/client_sdk/FCSDKiOS-4.3.5-beta1.xcframework.zip", checksum: "4aae0a6ec17902fd6e3d807ead62aaa859a98d0a0eda113b3a00e780ef89be83"),
.binaryTarget(name: "WebRTC", url: "https://swift-sdk.s3.us-east-2.amazonaws.com/real_time/WebRTC-m122.xcframework.zip", checksum: "fdb0715a4d916f0cedf049d90954105cc18cad3c7189b6ef274cabb9a1bcb5d7")
]
)