source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
platform :ios, '15.0'

target 'seanet_for_ios' do

pod 'GoogleMaps'

end


#older pod have very low iOS Deployment targets like 8.0 which arent installed any more
#so i just bump "iOS Deployment target" to CURRENT iOS(e.g. iOS 16) - 1(iOS 15.0)
#to check it work: Click on Pods project
#open project
#click on each pod target
#"iOS Deployment Target" should be 15.0 for all
#also set at top of podfile - above
#platform :ios, "15.0"
#https://stackoverflow.com/questions/37160688/set-deployment-target-for-cocoapodss-pod
post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
    end
  end
end
