forked from react-native-webrtc/react-native-webrtc
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathlivekit-react-native-webrtc.podspec
More file actions
29 lines (23 loc) · 1.13 KB
/
livekit-react-native-webrtc.podspec
File metadata and controls
29 lines (23 loc) · 1.13 KB
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
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = 'livekit-react-native-webrtc'
s.version = package['version']
s.summary = package['description']
s.homepage = 'https://github.com/livekit/react-native-webrtc'
s.license = package['license']
s.author = 'https://github.com/livekit/react-native-webrtc/graphs/contributors'
s.source = { :git => 'git@github.com:livekit/react-native-webrtc.git', :tag => 'release #{s.version}' }
s.requires_arc = true
s.platforms = { :ios => '12.0', :osx => '10.13', :tvos => '16.0' }
s.preserve_paths = 'ios/**/*'
s.source_files = 'ios/**/*.{h,m}'
s.libraries = 'c', 'sqlite3', 'stdc++'
s.framework = 'AudioToolbox','AVFoundation', 'CoreAudio', 'CoreGraphics', 'CoreVideo', 'GLKit', 'VideoToolbox'
s.dependency 'React-Core'
s.dependency 'WebRTC-SDK', '=144.7559.01'
# Swift/Objective-C compatibility
s.pod_target_xcconfig = {
'DEFINES_MODULE' => 'YES'
}
end