Does latest version supports Kotlin 1.7.10 ?
# compose-web
a
Does latest version supports Kotlin 1.7.10 ?
b
It only works with it after disabling the check. So far nothing broke for me after doing that.
a
What is the check ?
b
Compose compiler check to ensure that kotlin version matches
a
Thanks ^^
o
On multiplatform, I'm using this one as I suppose the above will not catch all compliations:
Copy code
tasks.withType<org.jetbrains.kotlin.gradle.dsl.KotlinCompile<*>>().configureEach {
    kotlinOptions.freeCompilerArgs += listOf("-P", "plugin:androidx.compose.compiler.plugins.kotlin:suppressKotlinVersionCompatibilityCheck=true")
}
Also, it seems that KSP invokes the Compose plugin without passing on the above option. I'm using the KSP option
blockOtherCompilerPlugins = true
to work around this.