-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
31 lines (31 loc) · 1.19 KB
/
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
28
29
30
31
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "THEOplayerSDK",
platforms: [
.iOS( .v13),
.tvOS(.v13)
],
products: [
.library(name: "THEOplayerGoogleIMAIntegration", targets: ["THEOplayerGoogleIMAIntegration"]),
.library(name: "THEOplayerGoogleCastIntegration", targets: ["THEOplayerGoogleCastIntegration"]),
.library(name: "THEOplayerSDK", targets: ["THEOplayerSDK"]),
],
targets: [
.binaryTarget(
name: "THEOplayerGoogleIMAIntegration",
url: "https://cdn.theoplayer.com/build/sdk-apple/8.5.1/THEOplayerGoogleIMAIntegration.xcframework.zip",
checksum: "6088fb2ec69c4e9067532c8ce32fc670a2680935e45aa6d49acd240a91a582dd"
),
.binaryTarget(
name: "THEOplayerGoogleCastIntegration",
url: "https://cdn.theoplayer.com/build/sdk-apple/8.5.1/THEOplayerGoogleCastIntegration.xcframework.zip",
checksum: "c5f8fe74ba74157e01e52086af7cb150b64c0c74200da2f715b6f09fa7b2d1f5"
),
.binaryTarget(
name: "THEOplayerSDK",
url: "https://cdn.theoplayer.com/build/sdk-apple/8.5.1/THEOplayerSDK.xcframework.zip",
checksum: "f31b6545dbff97fa76de7d6c751fbe7938fb11444ca0439d3deae62e7994345a"
),
]
)