23 lines
694 B
Swift
23 lines
694 B
Swift
|
|
// 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: "SendbirdChatSDK",
|
|
platforms: [.iOS(.v11)],
|
|
products: [
|
|
.library(
|
|
name: "SendbirdChatSDK",
|
|
targets: ["SendbirdChatSDK"]
|
|
),
|
|
],
|
|
dependencies: [],
|
|
targets: [
|
|
.binaryTarget(
|
|
name: "SendbirdChatSDK",
|
|
url: "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/v4.9.1/SendbirdChatSDK.xcframework.zip",
|
|
checksum: "71ff73d7e026926ff2a8aaf54506b94d3d6abc4c0f088fc60cfb58d8d127f3a6"
|
|
),
|
|
]
|
|
)
|