-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
49 lines (47 loc) · 1.89 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// swift-tools-version:5.6
import Foundation
import PackageDescription
let package = Package(
name: "StreamVideo",
defaultLocalization: "en",
platforms: [
.iOS(.v13), .macOS(.v11)
],
products: [
.library(
name: "StreamVideo",
targets: ["StreamVideoWrapper"]
),
.library(
name: "StreamVideoSwiftUI",
targets: ["StreamVideoSwiftUI"]
),
.library(
name: "StreamVideoUIKit",
targets: ["StreamVideoUIKit"]
)
],
dependencies: [
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.29.0"),
.package(url: "https://github.com/GetStream/stream-video-swift-webrtc.git", exact: "125.6422.065")
],
targets: [
.target(
name: "StreamVideoWrapper",
dependencies: [
.target(name: "StreamVideo"),
.product(name: "SwiftProtobuf", package: "swift-protobuf"),
.product(name: "StreamWebRTC", package: "stream-video-swift-webrtc")
]
),
.binaryTarget(name: "StreamVideo",
url: "https://github.com/GetStream/stream-video-swift/releases/download/1.19.2/StreamVideo.zip",
checksum: "293c41ce830c53291e07e4567c052e983c62e322a64f785e26ceea809d155ee6"),
.binaryTarget(name: "StreamVideoSwiftUI",
url: "https://github.com/GetStream/stream-video-swift/releases/download/1.19.2/StreamVideoSwiftUI.zip",
checksum: "3a2bd8636a32352ba5c8912bb9ec4f04555d1e5ae8ec28097993c548f6b80d40"),
.binaryTarget(name: "StreamVideoUIKit",
url: "https://github.com/GetStream/stream-video-swift/releases/download/1.19.2/StreamVideoUIKit.zip",
checksum: "6ee9bda6405d8fb57ddaa954d55bbc9e8f4b0cd7a9d908032b0a86f210ce6a44")
]
)