forked from react-native-webrtc/react-native-webrtc
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFishjamReactNativeWebrtc.podspec
More file actions
25 lines (21 loc) · 1.11 KB
/
FishjamReactNativeWebrtc.podspec
File metadata and controls
25 lines (21 loc) · 1.11 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
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = 'FishjamReactNativeWebrtc'
s.version = package['version']
s.summary = package['description']
s.homepage = 'https://github.com/fishjam-cloud/fishjam-react-native-webrtc'
s.license = package['license']
s.author = { 'Fishjam Cloud' => 'https://github.com/fishjam-cloud' }
s.source = { :git => 'https://github.com/fishjam-cloud/fishjam-react-native-webrtc.git', :tag => s.version.to_s }
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,swift}'
s.public_header_files = 'ios/**/*.h'
s.swift_version = '5.0'
s.libraries = 'c', 'sqlite3', 'stdc++'
s.framework = 'AudioToolbox','AVFoundation', 'CoreAudio', 'CoreGraphics', 'CoreVideo', 'GLKit', 'VideoToolbox'
s.dependency 'React-Core'
s.dependency 'JitsiWebRTC', '~> 124.0.0'
end