A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
Hello @Sreenivasan, Sreejith ,
Thanks for your question.
Yes, if you have automatic updates enabled on your Mac, your system likely updated Xcode in the background.
The underlying SDK in Xcode 26.6 is exactly the same as 26.5. There are no breaking changes to worry about; it is just a strict version check getting in the way.
You can refer to these following workarounds:
- Since the underlying Apple code is the same, you can just tell your project to ignore the version check.
- Open your main MAUI project file (the .csproj file).
- Find the first
<PropertyGroup>tag. - Add this line inside of it:
<ValidateXcodeVersion>false</ValidateXcodeVersion> - Save the file and rebuild your project.
- Use the older Xcode alongside the new one.
If you prefer not to change your project code, you can run both versions of Xcode on your Mac.
- Download Xcode 26.5 from the Apple Developer site.
- Unzip it, rename it to something like Xcode_26.5.app, and move it to your Applications folder.
- Open your Mac Terminal and point your system to the older version by running:
sudo xcode-select -s /Applications/Xcode_26.5.app - Rebuild your project.
I hope this addresses your question. If this response was helpful, please consider following the guidance to provide feedback.