I try to upgrade my project to Kotlin 1.9.10 + Com...
# build-tools
n
I try to upgrade my project to Kotlin 1.9.10 + Compose Multiplatform 1.5.0. Until now I used this configuration to ignore Compose incompatibility checks (with Kotlin 1.8.21 and Compose Multiplatform 1.5.0-dev1084):
Copy code
compose {
    kotlinCompilerPlugin.set(dependencies.compiler.forKotlin("1.8.20"))
    kotlinCompilerPluginArgs.add("suppressKotlinVersionCompatibilityCheck=1.8.21")
}
How should I modify the above configuration to prevent
Copy code
Compose Multiplatform 1.5.0 doesn't support Kotlin 1.9.10
error? Thanks.
t
n
So I should somehow update the Compose Compiler? Can you help how to do it? 🙂 I use Compose Multiplatform and I don't see a compatible release: https://github.com/JetBrains/compose-multiplatform/blob/master/VERSIONING.md#kotlin-compatibility
n
I could not make it to work 😕 buuut Compose Multiplatform 1.5.1 has just been released with official Kotlin 1.9.10 support 🙂: https://github.com/JetBrains/compose-multiplatform/releases/tag/v1.5.1 Anyway, thanks for your help, I will surely need the above info next time :|