Scholly
Scholly

Reputation: 11

Flutter iOS: Can't detect connected iOS simulator

I run the flutter doctor command and it says my Xcode installation is incomplete and no devices detected.

Upvotes: 0

Views: 612

Answers (1)

Muhammad Nabeel
Muhammad Nabeel

Reputation: 790

You don't need to reinstall or download Xcode. instead, run the commands:

sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch

then run flutter doctor again.

Upvotes: 1

Related Questions