-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
33 lines (32 loc) · 1.03 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
32
33
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "VoximplantKitChatUI",
platforms: [
.iOS(.v13)
],
products: [
.library(name: "VoximplantKitChatUI", targets: ["VoximplantKitChatUITarget"]),
],
dependencies: [
.package(
name: "VoximplantKitChat",
url: "https://github.com/voximplant/ios-kit-chat-sdk-releases.git",
.exact("1.0.1")
)
],
targets: [
.binaryTarget(
name: "VoximplantKitChatUI",
url: "https://voximplant-releases.s3.eu-central-1.amazonaws.com/ios-kit-chat/ui/1.0.1/swiftpm/VoximplantKitChatUI.zip",
checksum: "52d82a8a4d396ec62c78a8a6796887827f958dffc6c9530fc36c756931390b00"),
.target(
name: "VoximplantKitChatUITarget",
dependencies: [
.target(name: "VoximplantKitChatUI"),
.product(name: "VoximplantKitChat", package: "VoximplantKitChat")
],
path: "dummy"
)
]
)