-
Notifications
You must be signed in to change notification settings - Fork 0
/
WebRTC-arm64.podspec
25 lines (21 loc) · 1.14 KB
/
WebRTC-arm64.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
Pod::Spec.new do |s|
s.name = 'WebRTC-arm64'
s.version = '1.0.0'
s.summary = 'Unofficial distribution of webRTC arm64 only binary framework'
s.homepage = 'https://github.com/MuhtasimTanmoy/webRTC-arm64'
s.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
s.author = { 'Muhtasim Ulfat' => '[email protected]' }
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.platform = :ios
s.source = { :http => 'https://github.com/MuhtasimTanmoy/webRTC-arm64/releases/download/1.0.0/WebRTC-arm64.zip' }
# https://github.com/CocoaPods/CocoaPods/issues/10104
s.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.ios.deployment_target = '11.0'
s.ios.vendored_frameworks = 'WebRTC.framework'
end