S.
06/10/2025, 4:51 PMtapchicoma
06/10/2025, 5:37 PMS.
06/10/2025, 6:32 PMDavid Nedrow
06/11/2025, 1:33 AMxcode-select -p
?David Nedrow
06/11/2025, 1:35 AMS.
06/11/2025, 7:27 AMMarius Erath
06/11/2025, 3:56 PM-
in xcode-select -p
. xcode
command does indeed not exist, but xcode-select
should work.
Does the path that is returned point to a valid installation?David Nedrow
06/11/2025, 3:58 PMS.
06/11/2025, 4:03 PM/Applications/Xcode.app/Contents/Developer
languages on the device are english, german and chinese with english being primary. but half of these characters aren't chinese but quite catholic 😅S.
06/13/2025, 10:40 PMMaciej Procyk
06/17/2025, 9:15 AMinit.gradle.kts
file with the following content
gradle.settingsEvaluated {
settings.pluginManagement.resolutionStrategy.eachPlugin {
println("kdoctor >>> ${requested.id}=${requested.version}")
}
}
allprojects {
project.afterEvaluate {
val deps = buildscript.configurations.flatMap { it.dependencies }
deps.forEach { d ->
println("kdoctor >>> DEP ${d.group}:${d.name}:${d.version}")
}
}
}
and then run the
/path/to/project/gradlew -p /path/to/project -I /path/to/init.gradle.kts
and see how this fails/share the output for further investigation
When it comes to this Xcode checks, the preflight uses the Xcode that you have configured in IJ settings, see Tools
> Xcode
. Maybe you have there value different from /Applications/Xcode.app/Contents/Developer
, which has some Chinese language pack set as default?