-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
23 lines (22 loc) · 868 Bytes
/
Package.swift
File metadata and controls
23 lines (22 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "MaestroSDK",
platforms: [.iOS(.v14), .tvOS(.v14)],
products: [
.library(name: "espnKit", targets: ["espnKit"]),
.library(name: "foxKit", targets: ["foxKit"]),
],
targets: [
.binaryTarget(
name: "espnKit",
url: "https://github.com/lessthan3/MaestroKit.android/releases/download/4.0.0-SNAPSHOT13.58/espnKit-4.0.0-SNAPSHOT13.58.zip",
checksum: "7cc25ec784f05d5cfee301b4c30fbdbfb2a1be8e21e2e4308fe6d33d3fbaa369"
),
.binaryTarget(
name: "foxKit",
url: "https://github.com/lessthan3/MaestroKit.android/releases/download/foxKit-4.0.10.157/foxKit-4.0.10.157.zip",
checksum: "7604feff8be7fc7ae8aa0cdf734c971e7188ace6d2b1adb3bd285d7a765f0a92"
),
]
)