FlutterToast icon indicating copy to clipboard operation
FlutterToast copied to clipboard

IPHONEOS_DEPLOYMENT_TARGET

Open osamamohammed98 opened this issue 2 years ago • 1 comments

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

osamamohammed98 avatar Apr 25 '22 09:04 osamamohammed98

Modify your install section in pod file to config like below

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['ENABLE_BITCODE'] = 'NO'
        config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.1'
    end
  end
end
```4

ArunJRK avatar May 10 '22 12:05 ArunJRK