-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7a1f5b2
commit 091d131
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// 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: "PubNubChat", | ||
platforms: [.iOS(.v14)], | ||
products: [ | ||
.library( | ||
name: "PubNubChat", | ||
targets: ["PubNubChatRemoteBinaryPackage"]), | ||
], | ||
targets: [ | ||
.binaryTarget( | ||
name: "PubNubChatRemoteBinaryPackage", | ||
url: "https://github.com/pubnub/kmp-chat/releases/download/0.0.1-DEV/PubNubChat.xcframework.zip", | ||
checksum: "45025af8f30f692cbdebcca916c364ddb4bf52676ae2344b5d61607e588177b4" | ||
) | ||
] | ||
) |