
require 'json'

package = JSON.parse(File.read(File.join(__dir__, "package.json")))

Pod::Spec.new do |s|
  s.name         = "RNEnxUIKit"
  s.version      = "1.2.11"
  s.summary      = "react-native UIkit Toolkit"
  s.license      = { :type => 'Vcloudx License, Version 1.1', :text => 'https://www.enablex.io/legals/tou/'}
  s.authors      = { 'enablex' => 'https://github.com/enablexer' }
  s.homepage     = 'https://developer.enablex.io/api/client-api/ios-toolkit/'
  s.platform     = :ios, "12.0"

s.source       = { :git => "https://github.com/vcloudx-infotech/React_Native_UIKit.git", :tag => "master" }

  
  s.source_files  = "**/*.{h,m,swift}"
  s.requires_arc = true

  s.dependency "React"
  

s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'}
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }

end

