-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathPackage.swift
33 lines (30 loc) · 1.05 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: "CometChatUIKitSwift",
defaultLocalization: "en",
platforms: [
.iOS(.v13)
],
products: [
.library(name: "CometChatUIKitSwift", targets: ["CometChatUIKitSwiftWrapper"])
],
dependencies: [
.package(name: "CometChatSDK",
url: "https://github.com/cometchat/chat-sdk-ios.git", .exact("4.0.54")
)
],
targets: [
.target(name: "CometChatUIKitSwiftWrapper",
dependencies: [
.target(name: "CometChatUIKitSwift", condition: .when(platforms: [.iOS])),
.product(name: "CometChatSDK", package: "CometChatSDK")
],
path: "CometChatUIKitSwiftWrapper"),
.binaryTarget(
name: "CometChatUIKitSwift",
url: "https://library.cometchat.io/ios/v4.0/xcode15/CometChatUIKitSwift_4_3_18.xcframework.zip",
checksum: "6a62817b69c7e9e753a5e67ec5f2f1e67d63b3ad574b9102775b5f29fb35e995"
)
]
)