I have an app created with Flutter want to build it in IOS.
When i want to run simulator or build the I get error ,When I run Flutter doctor I get this error L
Xcode - develop for iOS and macOS
✗ Xcode installation is incomplete; a full installation is necessary for iOS development.
4
Answers
You probably miss the xcode command line tools, you may want to reinstall XCode, or select the xcode command line tools with the command
xcode-select
Here’s a full fix that should solve your problem: https://github.com/flutter/flutter/issues/6308#issuecomment-257812324
I was facing the same issue. I did not installed Xcode from Apple Store. If your scenario is same, you can try below steps,
If you already have Xcode and this happens. Just run this command
And
It will automatically show
So, I was facing this same issue, and tried to and copy paste the command already given. Namely
But why did it not work? Silly mistake of mine: I have two Xcode versions in my Applications folder. One is called
Xcode_12_3_0
and the otherXcode_12_5_1
. Make sure that, when you run the command, you also make sure you enter your app’s real name. For instance:An answer for us, absent-minded people.