Answers for "IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0"

0

warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.2.99. (in target 'GoogleSignIn' from project 'Pods')

Code Block post_install do |installer| installer.pods_project.targets.each do |target|  target.build_configurations.each do |config|   config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'  end endend
Posted by: Guest on December-11-2020

Code answers related to "IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0"

Browse Popular Code Answers by Language