Automatically assigning platform `iOS` with version `8.0` on target `Runner`

Environment: MAC, when running the flutter run in vscode, the following error is reported:

before , the code was logged off, now release it. Podfile is a folder brought by the MAC running itself, and then running the flutter run will report an error
. Go to the configuration file and configure the code

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

Then run the flutter run to start the project successfully

Read More: