-
Notifications
You must be signed in to change notification settings - Fork 12
/
Package.swift
31 lines (29 loc) · 1.02 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.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "telnyx-webrtc-ios",
products: [
.library(
name: "telnyx-webrtc-ios",
targets: ["TelnyxRTC"]),
],
dependencies: [
.package(url: "https://github.com/bugsnag/bugsnag-cocoa.git", from: "6.28.1"),
.package(url: "https://github.com/daltoniam/Starscream.git", from: "4.0.6"),
.package(url: "https://github.com/stasel/WebRTC.git", from: "124.0.0")
],
targets: [
.target(
name: "TelnyxRTC",
dependencies: [
.product(name: "Bugsnag", package: "bugsnag-cocoa"),
.product(name: "Starscream", package: "Starscream"),
.product(name: "WebRTC", package: "WebRTC")
],
path: "TelnyxRTC",
resources: [.copy("PrivacyInfo.xcprivacy")]
)
],
swiftLanguageVersions: [.v5]
)