-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
46 lines (42 loc) · 1.78 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
34
35
36
37
38
39
40
41
42
43
44
45
46
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "SendbirdSwiftUI",
platforms: [.iOS(.v15)],
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "SendbirdSwiftUI",
targets: ["SendbirdSwiftUITarget"]),
],
dependencies: [
.package(
name: "SendbirdChatSDK",
url: "https://github.com/sendbird/sendbird-chat-sdk-ios",
from: "4.25.0"
),
],
targets: [
.binaryTarget(
name: "SendbirdSwiftUI",
url: "https://github.com/sendbird/sendbird-swiftui-ios/releases/download/1.0.4/SendbirdSwiftUI.xcframework.zip", // SendbirdSwiftUI_URL
checksum: "f24e8527cbb20c193c1c24b0994c34a3b3ea8b79c824ebf8e2b85d48e09b1007" // SendbirdSwiftUI_CHECKSUM
),
.binaryTarget(
name: "SendbirdUIMessageTemplate",
url: "https://github.com/sendbird/sendbird-uikit-ios/releases/download/3.30.1/SendbirdUIMessageTemplate.xcframework.zip", // SendbirdUIMessageTemplate_URL
checksum: "af0563350430be0ecb40d20d0365bf7f5210719055b4d274570a4a62cbcb2e8c" // SendbirdUIMessageTemplate_CHECKSUM
),
.target(
name: "SendbirdSwiftUITarget",
dependencies: [
.target(name: "SendbirdSwiftUI"),
.target(name: "SendbirdUIMessageTemplate"),
.product(name: "SendbirdChatSDK", package: "SendbirdChatSDK")
],
path: "Framework/Dependency",
exclude: ["../../Sample", "../../Sources"]
),
]
)