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

target 'PhotoPills' do
  pod 'GoogleMaps'
  
  # Pod for Google Analytics
  pod 'Firebase/Crashlytics', :modular_headers => true
  pod 'Firebase/Analytics', :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'] = '11'
        end
    end
end
