-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathWebRTC-lib.podspec
More file actions
20 lines (16 loc) · 928 Bytes
/
WebRTC-lib.podspec
File metadata and controls
20 lines (16 loc) · 928 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 = "146.0.0"
spec.summary = " A community-driven distribution of up to date WebRTC framework binaries for iOS and macOS."
spec.description = <<-DESC
This pod contains community-driven distribution of WebRTC framework binaries for iOS and macOS.
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/146.0.0/WebRTC-M146.xcframework.zip" }
spec.vendored_frameworks = "WebRTC.xcframework"
end