加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
JPush.podspec 828 Bytes
一键复制 编辑 原始数据 按行查看 历史
詹强 提交于 2019-10-22 13:17 . 更新pod
require 'json'
pjson = JSON.parse(File.read('package.json'))
Pod::Spec.new do |s|
s.name = "JPush"
s.version = pjson["version"]
s.homepage = pjson["homepage"]
s.summary = pjson["description"]
s.license = pjson["license"]
s.author = pjson["author"]
s.ios.deployment_target = '7.0'
s.source = { :git => "https://github.com/jpush/jpush-react-native.git", :tag => "#{s.version}" }
s.source_files = 'ios/RCTJPushModule/*.{h,m}'
s.preserve_paths = "*.js"
s.frameworks = 'UIKit','CFNetwork','CoreFoundation','CoreTelephony','SystemConfiguration','CoreGraphics','Foundation','Security'
s.weak_frameworks = 'UserNotifications'
s.libraries = 'z','resolv'
s.vendored_libraries = "ios/RCTJPushModule/*.a"
s.dependency 'React'
end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化