加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
JCore.podspec 694 Bytes
一键复制 编辑 原始数据 按行查看 历史
require 'json'
pjson = JSON.parse(File.read('package.json'))
Pod::Spec.new do |s|
s.name = "JCore"
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/jcore-react-native.git", :tag => "#{s.version}" }
s.source_files = 'ios/RCTJCoreModule/*.{h,m}'
s.preserve_paths = "**/*.js"
s.vendored_frameworks = "ios/RCTJCoreModule/*.xcframework"
s.libraries = 'z','resolv', 'sqlite3', 'c++.1'
s.dependency 'React'
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化