aliyun-oss-react-native

aliyun-oss-react-native.podspec 576B

12345678910111213141516171819
  1. require 'json'
  2. package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
  3. Pod::Spec.new do |s|
  4. s.name = package['name']
  5. s.version = package["version"]
  6. s.summary = package['description']
  7. s.author = { 'albertluo' => 'luozhang002@126.com' }
  8. s.license = package['license']
  9. s.homepage = package['homepage']
  10. s.source = { :git => 'https://github.com/aliyun/aliyun-oss-react-native.git' }
  11. s.platform = :ios, '8.0'
  12. s.source_files = 'ios/*.{h,m}'
  13. s.dependency 'React'
  14. s.dependency 'AliyunOSSiOS'
  15. end