XMPush.podspec 659 B

12345678910111213141516171819202122
  1. require 'json'
  2. pjson = JSON.parse(File.read('package.json'))
  3. Pod::Spec.new do |s|
  4. s.name = "XMPush"
  5. s.version = pjson["version"]
  6. s.homepage = pjson["homepage"]
  7. s.summary = pjson["description"]
  8. s.license = pjson["license"]
  9. s.author = { "zhangzy" => "zhangzy@5ichong.com" }
  10. s.ios.deployment_target = '9.0'
  11. s.source = { :git => "https://github.com/a289459798/react-native-mipush", :tag => "v#{s.version}" }
  12. s.source_files = 'ios/*.{h,m}'
  13. s.ios.vendored_libraries = 'ios/*.a'
  14. s.preserve_paths = "**/*.js"
  15. s.dependency 'React'
  16. s.dependency 'RNCPushNotificationIOS'
  17. end