forked from react-native-webrtc/react-native-webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRCTWebRTC.podspec
More file actions
23 lines (21 loc) · 1.04 KB
/
RCTWebRTC.podspec
File metadata and controls
23 lines (21 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = "RCTWebRTC"
s.version = package['version']
s.summary = package['description']
s.description = <<-DESC
WebRTC for react native.
DESC
s.homepage = "https://github.com/oney/react-native-webrtc"
s.license = package['license']
s.author = "https://github.com/oney/react-native-webrtc/graphs/contributors"
s.source = { :git => "git@github.com:oney/react-native-webrtc.git", :tag => "release #{s.version}" }
s.requires_arc = true
s.platform = :ios, "9.2"
s.preserve_paths = "ios/**/*"
s.source_files = 'ios/**/*.{h,m}'
s.libraries = "stdc++","sqlite3","c"
s.framework = 'VideoToolbox','CoreVideo','CoreAudio','GLKit','CoreGraphics','AudioToolbox','AVFoundation'
s.vendored_libraries = 'ios/libjingle_peerconnection/*.{a}'
end