-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
27 lines (24 loc) · 968 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.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "swift-sdk",
platforms: [
.iOS(.v14)
],
products: [
.library(name: "BirdKit", targets: ["BirdKit"])
],
targets: [
.binaryTarget(
name: "BirdKit",
// This URL is only usable if the repo is public.
// Until this repo goes public, you can use a local path instead.
// Remove the `url` and `checksum` lines and uncomment the `path` line.
// In XCode -> File -> Packages -> Update to Latest Package Versions
// path: "../path/to/BirdKit.xcframework.zip"
url: "https://github.com/messagebird/swift-sdk/releases/download/0.2.2/BirdKit.xcframework.zip",
checksum: "31e5aebff7b76046bac445b879641abb9bdf605b200a257f1e241c3805f438cd"
)
]
)