-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathGtSdkRN.podspec
27 lines (21 loc) · 961 Bytes
/
GtSdkRN.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
require 'json'
pjson = JSON.parse(File.read('package.json'))
Pod::Spec.new do |s|
s.name = "GtSdkRN"
s.version = pjson["version"]
s.homepage = "https://github.com/GetuiLaboratory/react-native-getui"
s.summary = pjson["description"]
s.license = pjson["license"]
s.author = { "huminios" => "[email protected]" }
s.ios.deployment_target = '8.0'
s.source = { :git => "https://github.com/GetuiLaboratory/react-native-getui.git" }
s.source_files = 'ios/RCTGetuiModule/RCTGetuiModule/*.{h,m}'
s.preserve_paths = "*.js"
s.frameworks = 'SystemConfiguration', 'CFNetwork','CoreTelephony','CoreLocation','AVFoundation','Security','AdSupport'
s.weak_frameworks = 'UserNotifications','AppTrackingTransparency','Network'
s.libraries = 'z','sqlite3.0','c++','resolv'
s.requires_arc = true
s.swift_versions = ['5']
s.dependency 'React'
s.dependency 'GTSDK'
end