-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPackage.swift
More file actions
46 lines (45 loc) · 1.6 KB
/
Copy pathPackage.swift
File metadata and controls
46 lines (45 loc) · 1.6 KB
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.10
import PackageDescription
let package = Package(
name: "SendbirdAIAgentCore",
platforms: [.iOS(.v14)],
products: [
.library(name: "SendbirdAIAgentCore", targets: ["SendbirdAIAgentCoreTarget"])
],
dependencies: [
.package(
url: "https://github.com/sendbird/sendbird-ios-distribution",
from: "0.10.8"
),
.package(
url: "https://github.com/JohnSundell/Splash",
from: "0.16.0"
),
.package(
url: "https://github.com/sendbird/sendbird-uikit-ios-spm",
from: "3.35.4"
),
.package(
url: "https://github.com/sendbird/sendbird-chat-sdk-ios",
from: "4.39.9"
)
],
targets: [
.binaryTarget(
name: "SendbirdAIAgentCore",
url: "https://github.com/sendbird/delight-ai-agent-core-ios/releases/download/1.17.3/SendbirdAIAgentCore.xcframework.zip",
checksum: "46a2e27b45ae997755d5488e38487a7fc1968603172f0080c0eec78301e1e0a5"
),
.target(
name: "SendbirdAIAgentCoreTarget",
dependencies: [
.target(name: "SendbirdAIAgentCore"),
.product(name: "SendbirdUIMessageTemplate", package: "sendbird-uikit-ios-spm"),
.product(name: "SendbirdMarkdownUI", package: "sendbird-ios-distribution"),
.product(name: "Splash", package: "Splash"),
.product(name: "SendbirdChatSDK", package: "sendbird-chat-sdk-ios")
],
path: "Framework/Dependency"
)
]
)