# blaze-rtn-sdk.podspec require "json" package = JSON.parse(File.read(File.join(__dir__, "package.json"))) Pod::Spec.new do |s| s.name = "blaze-rtn-sdk" s.version = package["version"] s.summary = package["description"] s.description = <<-DESC Release version Blaze SDK component using React Native DESC s.homepage = "https://wsc-sports.com/" # brief license entry: # s.license = "The Apache Software License, Version 2.0" # optional - use expanded license entry instead: s.license = { :type => "The Apache Software License, Version 2.0", :file => "LICENSE" } s.authors = { "Mobile Dev WSC" => "developers@wsc-sports.com" } s.platforms = { :ios => "15.0" } s.source = { :git => "https://github.com/WSCSports/blaze-sample-reactNative.git", :tag => "#{s.version}" } s.dependency "React" s.dependency 'BlazeSDK', '1.18.1' s.source_files = [ "ios/Sources/**/*.{h,c,cc,cpp,m,mm,swift}" ] s.resource_bundles = { 'blaze-rtn-sdk-bundle' => ['ios/Sources/**/*.{xib,storyboard,plist}'] } end