source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '12'
use_modular_headers!

target 'PhotoPills' do
  pod 'GoogleMaps', '~> 6.2.1'

  # Pod for Google Analytics
  pod 'Firebase/Crashlytics', '~> 10.29.0', :modular_headers => true
  pod 'Firebase/Analytics', '~> 10.29.0', :modular_headers => true

  # Used to visualize touches on the screen
  pod "TouchVisualizer"
end

post_install do |pi|
    pi.pods_project.targets.each do |t|
        t.build_configurations.each do |config|
            config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12'
        end
    end
end
