Reputation: 11
I run the flutter doctor
command and it says my Xcode installation is incomplete and no devices detected.
Upvotes: 0
Views: 612
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