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

target 'BeInBeOutAMCO' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!

  
  
  # Code
  pod 'SwiftLint'
  pod 'Siren'
  pod 'FMDB'
  pod 'CryptoSwift', '~> 1.7.1'
  # Design
  pod 'MBProgressHUD', '1.2.0'
  pod 'IQKeyboardManagerSwift'
  
  # Network
  pod 'Alamofire', '5.7.1'
  
  # Database
  
  
  # Google
  
  
  # Firebase
  pod 'Firebase/Crashlytics', '10.11.0'
  pod 'Firebase/Analytics', '10.11.0'
  pod 'Firebase/Messaging', '10.11.0'
  pod 'FirebaseRemoteConfig', '10.11.0'
  
  # Socail Logins
  
  
  # Image Libraries
  pod 'SDWebImage', '5.0'

  # Ads
  
  
  target 'BeInBeOutAMCOTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'BeInBeOutAMCOUITests' do
    # Pods for testing
  end

  post_install do |installer|
    installer.generated_projects.each do |project|
      project.targets.each do |target|
        target.build_configurations.each do |config|
          current_deployment_target = config.build_settings['IPHONEOS_DEPLOYMENT_TARGET']
          if current_deployment_target && Gem::Version.new(current_deployment_target) < Gem::Version.new('11.0')
            config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
          end
        end
      end
    end
  end
end
