-
Notifications
You must be signed in to change notification settings - Fork 21
/
Package.swift
45 lines (43 loc) · 1.24 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
// swift-tools-version:5.9
import Foundation
import PackageDescription
let package = Package(
name: "StreamVideo",
defaultLocalization: "en",
platforms: [.iOS(.v13)],
products: [
.library(
name: "StreamVideo",
targets: ["StreamVideo"]
),
.library(
name: "StreamVideoSwiftUI",
targets: ["StreamVideoSwiftUI"]
),
.library(
name: "StreamVideoUIKit",
targets: ["StreamVideoUIKit"]
)
],
dependencies: [
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.18.0"),
.package(url: "https://github.com/GetStream/stream-video-swift-webrtc.git", exact: "114.5735.08")
],
targets: [
.target(
name: "StreamVideo",
dependencies: [
.product(name: "SwiftProtobuf", package: "swift-protobuf"),
.product(name: "StreamWebRTC", package: "stream-video-swift-webrtc")
]
),
.target(
name: "StreamVideoSwiftUI",
dependencies: ["StreamVideo"]
),
.target(
name: "StreamVideoUIKit",
dependencies: ["StreamVideo", "StreamVideoSwiftUI"]
)
]
)