-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
40 lines (36 loc) · 1.31 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
// 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.21.1"
),
],
targets: [
.binaryTarget(
name: "SendbirdSwiftUI",
url: "https://github.com/sendbird/sendbird-swiftui-ios/releases/download/1.0.0-beta.3/SendbirdSwiftUI.xcframework.zip",
checksum: "4aad0185e8ebf1b305cfbf984e29312faf4084925c40e774d77b8328477fc4a4"
),
.target(
name: "SendbirdSwiftUITarget",
dependencies: [
.target(name: "SendbirdSwiftUI"),
.product(name: "SendbirdChatSDK", package: "SendbirdChatSDK")
],
path: "Framework/Dependency",
exclude: ["../../Sample", "../../Sources"]
),
]
)