skip to Main Content

I am using macOS and I am installing flutter. When I run to ‘flutter doctor’ I take a error like

    Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 3.13.5, on macOS 13.6 22G120 darwin-arm64, locale
    tr-TR)
[✓] Android toolchain - develop for Android devices (Android SDK version 34.0.0)
[!] Xcode - develop for iOS and macOS (Xcode 15.0)
    ✗ Unable to get list of installed Simulator runtimes.
[✓] Chrome - develop for the web
[✓] Android Studio (version 2022.3)
[✓] Connected device (2 available)
[✓] Network resources

I don’t know why. Is there anyone who know the error source?

I want to help about this.

2

Answers


  1. I had the same issue when running updates to my flutter install. My problem turned out to be that my iOS simulator seemed to have lost all the iOS runtimes. By re-installing them my issue was resolved. This might help you, try run this via the terminal:

    xcodebuild -downloadPlatform iOS
    
    Login or Signup to reply.
  2. The above answer didn’t help, but this did:

    Xcode -> Window -> Devices and Simulators -> Simulators -> + -> OS Version -> Download more simulator runtimes

    There, first I deleted the existing iOS 17 files, and then downloaded them again.

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