-
Notifications
You must be signed in to change notification settings - Fork 12
/
TelnyxRTC.podspec
28 lines (22 loc) · 1.19 KB
/
TelnyxRTC.podspec
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
Pod::Spec.new do |spec|
spec.name = "TelnyxRTC"
spec.version = "0.1.37"
spec.summary = "Enable Telnyx real-time communication services on iOS."
spec.description = "The Telnyx iOS WebRTC Client SDK provides all the functionality you need to start making voice calls from an iPhone."
spec.homepage = "https://github.com/team-telnyx/telnyx-webrtc-ios"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Telnyx LLC" => "[email protected]" }
spec.source = { :git => "https://github.com/team-telnyx/telnyx-webrtc-ios.git", :tag => "#{spec.version}" }
spec.platform = :ios, "12.0"
spec.swift_version = "5.0"
spec.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64',
'ENABLE_BITCODE' => 'NO'
}
spec.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
spec.source_files = "TelnyxRTC", "TelnyxRTC/**/*.{h,m,swift}"
spec.exclude_files = "TelnyxRTC/Exclude"
spec.resource_bundles = {"TelnyxRTC" => ["TelnyxRTC/PrivacyInfo.xcprivacy"]}
spec.dependency "Bugsnag", "~> 6.28.1"
spec.dependency "Starscream", "~> 4.0.6"
spec.dependency "WebRTC-lib", "~> 124.0.0"
end