skip to Main Content

I have an iOS simulator for version 17.2 installed on my Mac. I was able to successfully run the flutter app before I upgraded to the latest Flutter version, and it now requires me to download iOS 17.4. Since the file size is very large, I want to avoid it if possible. Are there any ways to run a flutter application on older iOS versions?

Launching lib/main.dart on iPhone SE (3rd generation) in debug mode...
Xcode build done.                                            1.8s
Failed to build iOS app
Uncategorized (Xcode): Unable to find a destination matching the provided destination specifier:
        { id:(hid it just in case) }

    Ineligible destinations for the "Runner" scheme:
        { platform:iOS, id:dvtdevice-DVTiPhonePlaceholder-iphoneos:placeholder, name:Any iOS Device, error:iOS 17.4 is not installed. To use with Xcode, first download and install the platform }

════════════════════════════════════════════════════════════════════════════════
iOS 17.4 is not installed. To download and install the platform, open
Xcode, select Xcode > Settings > Platforms, and click the GET button for the
required platform.

For more information, please visit:
  https://developer.apple.com/documentation/xcode/installing-additional-simulator-runtimes
════════════════════════════════════════════════════════════════════════════════
Could not build the application for the simulator.
Error launching application on iPhone SE (3rd generation).

I’ve searched for an hour and tried looking into the Runner settings but couldn’t find how to change the target build version.

My Xcode Interface

2

Answers


  1. Chosen as BEST ANSWER

    I couldn't find any option to run a Flutter application on older iOS versions without upgrading SDK to iOS 17.4. It is caused by upgrading your Flutter SDK.


  2. open runner.xcworkspace in Xcode and change your minimum deployment target as your requirement

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search