-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglia-webrtc.podspec
30 lines (27 loc) · 1.17 KB
/
glia-webrtc.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
29
30
Pod::Spec.new do |s|
s.name = "glia-webrtc"
s.version = "0.0.3"
s.summary = "WebRTC SDK for iOS build with bitcode"
s.description = <<-DESC
WebRTC is a free, open project that provides browsers and mobile
applications with Real-Time Communications (RTC) capabilities via simple
APIs.
DESC
s.homepage = "http://webrtc.org/"
s.source = { :git => 'https://github.com/salemove/ios-webrtc.git', :tag => s.version.to_s }
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Glia' => '[email protected]' }
s.ios.deployment_target = '10.0'
s.swift_version = '4.2'
s.default_subspecs = 'release'
s.subspec 'release' do |rsp|
rsp.source_files = "output/release/WebRTC.framework/Headers/**/*.h"
rsp.public_header_files = "output/release/WebRTC.framework/Headers/**/*.h"
rsp.vendored_frameworks = "output/release/WebRTC.framework"
end
s.subspec 'bitcode' do |bsp|
bsp.source_files = "output/bitcode/WebRTC.framework/Headers/**/*.h"
bsp.public_header_files = "output/bitcode/WebRTC.framework/Headers/**/*.h"
bsp.vendored_frameworks = "output/bitcode/WebRTC.framework"
end
end