-
Notifications
You must be signed in to change notification settings - Fork 45
/
JMessageRN.podspec
24 lines (20 loc) · 1 KB
/
JMessageRN.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
require 'json'
pjson = JSON.parse(File.read('package.json'))
Pod::Spec.new do |s|
s.name = "JMessageRN"
s.version = pjson["version"]
s.homepage = "https://github.com/jpush/jmessage-react-native"
s.summary = pjson["description"]
s.license = pjson["license"]
s.author = { "ys" => "[email protected]" }
s.ios.deployment_target = '7.0'
s.source = { :git => "https://github.com/jpush/jmessage-react-native.git", :tag => "#{s.version}" }
s.source_files = 'ios/RCTJMessageModule/*.{h,m}'
s.preserve_paths = "*.js"
s.frameworks = 'UIKit','CFNetwork','CoreFoundation','CoreTelephony','SystemConfiguration','CoreGraphics','Foundation','Security','CoreLocation','CoreAudio','AudioToolbox','AVFoundation'
s.weak_frameworks = 'UserNotifications'
s.libraries = 'z','resolv','sqlite3.0'
s.vendored_libraries = "ios/RCTJMessageModule/*.a"
s.vendored_frameworks = "ios/RCTJMessageModule/JMessage.framework"
s.dependency 'React'
end