-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathWebRTC-lib.podspec
More file actions
20 lines (16 loc) · 883 Bytes
/
WebRTC-lib.podspec
File metadata and controls
20 lines (16 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |spec|
spec.name = "WebRTC-lib"
spec.version = "141.0.0"
spec.summary = "Unofficial distribution of WebRTC framework binaries for iOS. "
spec.description = <<-DESC
This pod contains unofficial distribution of WebRTC framework binaries for iOS.
All binaries in this repository are compiled from the official WebRTC source code without any modifications to the sources code or to the output binaries.
DESC
spec.homepage = "https://github.com/stasel/WebRTC"
spec.license = { :type => 'BSD', :file => 'WebRTC.xcframework/LICENSE' }
spec.author = "Stasel"
spec.ios.deployment_target = '12.0'
spec.osx.deployment_target = '10.11'
spec.source = { :http => "https://github.com/stasel/WebRTC/releases/download/141.0.0/WebRTC-M141.xcframework.zip" }
spec.vendored_frameworks = "WebRTC.xcframework"
end