how to resolve the iOS deployment target issue in flutter?

5 min read

The iOS deployment target issue in Flutter can be resolved by following these steps:

  1. Open the project in Xcode by navigating to the iOS directory in your Flutter project and opening the .xcworkspace file.
  2. Click on the Runner target in the left pane.
  3. Select the General tab.
  4. In the Deployment Info section, change the Deployment Target to the required iOS version (e.g. 11.0).
  5. Save the changes and close Xcode.
  6. Go back to your Flutter project and run the following command in your terminal:
flutter clean
  1. After the project has been cleaned, run the following command to build the app:
flutter build ios

This should resolve the iOS deployment target issue in your Flutter project.