Posts

Showing posts from May, 2021

Flutter - "The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0"

Image
 2021-05-31 stackoverflow step1 step2 step3 post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_ios_build_settings(target) target.build_configurations.each do |config| config.build_settings[ 'IPHONEOS_DEPLOYMENT_TARGET' ] = '9.0' end end end or post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET' end end end step4 其實新版的沒這問題…