[Gradle] Xcode version too high warning

Adds new warning diagnostic that checks that selected Xcode version is not higher than latest tested with the current Kotlin version

^KT-62373 Verification Pending
This commit is contained in:
Artem Daugel-Dauge
2024-01-15 10:02:26 +01:00
committed by Space Team
parent e822375461
commit fff5a412ec
21 changed files with 199 additions and 95 deletions
@@ -41,6 +41,8 @@ data class XcodeVersion(val major: Int, val minor: Int) : Comparable<XcodeVersio
minor = split.getOrNull(1)?.toIntOrNull() ?: return null,
)
}
val maxTested = XcodeVersion(15, 1)
}
}