-
Notifications
You must be signed in to change notification settings - Fork 0
/
KaiRTC.podspec
24 lines (20 loc) · 950 Bytes
/
KaiRTC.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
Pod::Spec.new do |spec|
spec.name = "KaiRTC"
spec.version = "128.6613.01"
spec.summary = "WebRTC pre-compiled library for Darwin x Waterbus."
spec.description = <<-DESC
WebRTC pre-compiled library for Darwin.
The binary files in this repository are compiled using Google WebRTC source code M version,
and a series of optimization patches from the waterbus community have been added.
DESC
spec.homepage = "https://docs.waterbus.tech"
spec.license = { :type => 'BSD', :file => 'WebRTC.xcframework/LICENSE.md' }
spec.author = "waterbus"
spec.ios.deployment_target = '12.0'
spec.osx.deployment_target = '11.0'
spec.source = { :http => "https://github.com/webrtcsdk/webrtc-build/releases/download/m128.6613.01/WebRTC.xcframework.zip" }
spec.vendored_frameworks = "WebRTC.xcframework"
spec.xcconfig = {
'VALID_ARCHS' => 'arm64'
}
end