require "json" package = JSON.parse(File.read(File.join(__dir__, "package.json"))) Pod::Spec.new do |s| s.name = "react-native-aliyun-onepass" s.version = package["version"] s.summary = package["description"] s.homepage = package["homepage"] s.license = package["license"] s.authors = package["author"] s.platforms = { :ios => "10.0" } s.source = { :git => "https://gitee.com/rong88/react-native-aliyun-onepass.git", :tag => "#{s.version}" } s.source_files = "ios/**/*.{h,m,mm}" s.vendored_frameworks = 'ios/AliyunOnePassLib/*.framework' s.resources = ['ios/AliyunOnePassLib/ATAuthSDK.framework/ATAuthSDK.bundle'] s.dependency "React-Core" end