-
Notifications
You must be signed in to change notification settings - Fork 18
/
Package.swift
27 lines (25 loc) · 961 Bytes
/
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
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "CometChatSDK",
platforms: [
// Only add support for iOS 11 and up.
.iOS(.v11)
],
products: [
.library(name: "CometChatSDK", targets: ["CometChatSDK","CometChatStarscream"])
],
targets: [
.binaryTarget(
name: "CometChatSDK",
url: "https://library.cometchat.io/ios/v4.0/xcode15/CometChatSDK_4_0_55-beta1.xcframework.zip",
checksum: "719a8d010e0a953471948ad8d5f277587b21a5c40a99e3bcbd2f28d8a0a216a2"
),
.binaryTarget(
name: "CometChatStarscream",
url: "https://library.cometchat.io/ios/v4.0/xcode15/CometChatStarscream_1_0_1.xcframework.zip",
checksum: "13a5968a10051dacfbc1fae4be585db59be4ef92e7b7ec33017d95d87a30bdd6"
)
]
)