최근에 Cursor AI로 Tuist 기반의 Xcode Project를 하나 만들었는데,
Tuist로 generate하자 이런 오류가 발생했는데요
The selected Xcode version is 16.2, which is not compatible with this project’s Xcode version requirement of 14.0.0.
뭔가 Xcode 버전과 관련되어 보였습니다. 저는 최근에 Xcode를16으로 업그레이드 했습니다.
그래서 이런 상황과 함께 문제에 관해 Cursor에게 원인을 묻자 이런 파일을 알려줬습니다.
Config.swift는 Xcode 버전에 관한 설정을 가지고 있었는데 그 값이 14.0로 되어있어서
let config = Config(
compatibleXcodeVersions: ["14.0"],
16으로 바꿔봤죠
compatibleXcodeVersions: ["16.2"],
tuist init로 만든 다른 앱들의 Config.swift는 이렇게 되어있기 때문에
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}",
)
이런 오류를 보지 못했었습니다
도움이 되었길 바랍니다
즐 Tuist!
'Programming > iOS' 카테고리의 다른 글
프로젝트에 Tuist로 TCA 준비하기 (0) | 2025.02.26 |
---|---|
기존 프로젝트에 Tuist 4 설정하기 (2) | 2025.01.17 |
Sonoma에서 Xcode 14 실행하기 #iOS #Xcode (0) | 2025.01.11 |
Ventura에서 Xcode 15 실행하는 방법 #Xcode #MacOS #강제실행 #제한해제 (0) | 2025.01.04 |