-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
36 lines (35 loc) · 1017 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
27
28
29
30
31
32
33
34
35
36
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "Livery",
platforms: [
.iOS(.v14)
],
products: [
.library(name: "Livery", targets: ["LiverySDKWrapper"])
],
dependencies: [
.package(
name: "AWSiOSSDKV2",
url: "https://github.com/aws-amplify/aws-sdk-ios-spm",
from: "2.37.2"
)
],
targets: [
.binaryTarget(
name: "Livery",
url: "https://sdk-ios-binaries.liveryvideo.com/xcframework/Livery-3.1.1.zip",
checksum: "213757c9558cce0efc56690f4f04484deae581c07b1a9bed3f093c3c3b3a5841"
),
.target(
name: "LiverySDKWrapper",
dependencies: [
"Livery",
.product(name: "AWSCore", package: "AWSiOSSDKV2"),
.product(name: "AWSPinpoint", package: "AWSiOSSDKV2")
],
path: "LiveryTargetSource"
)
],
swiftLanguageVersions: [.v5]
)