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

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

  # Pods for 74
  pod 'Alamofire', '~> 5.0'
  target '74Tests' do
    inherit! :search_paths
    # Pods for testing
  end

  target '74UITests' do
    # Pods for testing
  end
  post_install do |installer|
    installer.pods_project.targets.each do |target|
      target.build_configurations.each do |config|
        config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] = "12.4"
      end
    end
  end
end