# Uncomment the next line to define a global platform for your project
platform :ios, '14.0'

target 'ViewCaller' do
   use_frameworks!
	
  pod 'PhoneNumberKit'
  pod 'RxSwift'
  pod 'SwiftyJSON'
  pod 'Alamofire', '~> 5.0.0-rc.3'
  pod 'NVActivityIndicatorView'
  pod 'R.swift'
  pod 'ReachabilitySwift'
  pod 'lottie-ios'
  pod 'SQLite.swift'
  pod 'GzipSwift'
  pod 'TapKit', :git => "https://github.com/Tap-Mobile/TapKit.git", :tag => '0.17.0'
  pod 'GoogleSignIn'
  pod 'FirebaseAuth'
  pod 'MixpanelSessionReplay', :git => 'https://github.com/mixpanel/mixpanel-ios-session-replay-package.git', :tag => '0.5.0'
end

target 'ViewCallerTests' do
  inherit! :search_paths
  use_frameworks!
  pod 'SnapshotTesting', '~> 1.9'
end

post_install do |installer|
  installer.pods_project.targets.each do |target|
      target.build_configurations.each do |config|
          config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
          config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
          config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
          config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = ""
      end
  end
end
