require "json" package = JSON.parse(File.read(File.join(__dir__, "package.json"))) Pod::Spec.new do |s| s.name = "react-native-upi-bolt" s.version = package["version"] s.summary = package["description"] s.description = <<-DESC react-native-upi-plugin DESC s.homepage = "https://github.com/payu-intrepos/PayuUPIBoltReactNative" s.license = "MIT" # s.license = { :type => "MIT", :file => "FILE_LICENSE" } s.authors = { "PayU" => "mobile@payu.in" } s.platforms = { :ios => "13.0" } s.source = { :git => "https://github.com/payu-intrepos/PayuUPIBoltReactNative.git", :tag => "#{s.version}" } s.source_files = "ios/**/*.{h,m,swift}" s.requires_arc = true s.resource_bundles = { 'PayUResource' => ['ios/PayUUPIBoltUISdkInfo.plist'] } s.dependency "React" s.dependency 'PayUIndia-CrashReporter', '~> 4.0' s.dependency 'PayUIndia-NetworkReachability', '~> 2.1' s.dependency 'PayUIndia-AssetLibrary', '~> 4.0' s.dependency 'PayUIndia-Analytics', '~> 4.0' s.dependency 'PayUIndia-UPIBoltUIKit', '2.0.0' end