The selected Xcode version is 16.2, which is not compatible with this project’s Xcode version requirement of 14.0.0.
1 min readJan 6, 2025
Please go to here if you are not a member and can read Korean.
I created Xcode project based on Tuist by Cursor.
However Tuist generation emitte for me an error
The selected Xcode version is 16.2, which is not compatible with this project’s Xcode version requirement of 14.0.0.
It was seemed related to the version of Xcode. I upgraded it recently.
So I asked an answer to Cursor.
It showed me this file
Config.swift contains settings for Xcode, it has 14.0 in the error.
let config = Config(
compatibleXcodeVersions: ["14.0"],
I just modified it to 16
compatibleXcodeVersions: ["16.2"],
Config.swift of my other apps is like this.
let config = Config(
// Create an account with "tuist auth" and a project with "tuist project create"
// then uncomment the section below and set the project full-handle.
// * Read more: https://docs.tuist.io/guides/quick-start/gather-insights
//
// fullHandle: "{account_handle}/{project_handle}",
)
Therefore I haven’t such an error :)
Happy tuisting!