-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
31 lines (30 loc) · 1.29 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
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "DyteUiKit",
platforms: [.iOS(.v13)],
products: [
.library(name: "DyteUiKit", targets: ["DyteUiKit","DyteiOSCore", "DyteWebRTC", "AmazonIVSPlayer"]),
],
targets: [
.target(name: "DyteUiKit",
path: "DyteUiKit/",
resources: [.process("Resources/notification_join.mp3"),
.process("Resources/notification_message.mp3")]),
.binaryTarget(
name: "DyteWebRTC",
url: "https://dyte-assets.s3.ap-south-1.amazonaws.com/sdk/ios_core/DyteWebRTC_v0.0.4.zip",
checksum: "25318dfb4bd018fde6ed7fd3337d9aa1c62fc8b39ab985c60fa530eb3819e68a"
),
.binaryTarget(
name: "DyteiOSCore",
url: "https://dyte-assets.s3.ap-south-1.amazonaws.com/sdk/ios_core/DyteiOSCore-1.39.0-d15df9f9-0b50-4948-a2af-37784b304b61.xcframework.zip",
checksum: "19946959340a927ea5413b9b2cea88dc60a644459ae4bb70845bb0f6ccdf2e9e"
),
.binaryTarget(
name: "AmazonIVSPlayer",
url: "https://github.com/dyte-in/AmazonIVSPlayer/archive/refs/tags/0.0.1.zip",
checksum: "6476a3ecd74acac0a11b6b772c579326c9606028b1389dda0dfb21b5beb2d204"
)
]
)