Is Compose Multiplatform 1.5.11 compatible with Ko...
# compose
c
Is Compose Multiplatform 1.5.11 compatible with Kotlin 1.9.22? I don't see it mentioned anywhere.
m
It isn't compatible with it, Unfortunately.
c
Thanks. Do we have an estimate of when the next Compose version will be released?
m
honestly, I don't know. someone from JB compose team can give an estimate, but currently there is a dev release that supports 1.9.22 https://github.com/JetBrains/compose-multiplatform/releases/tag/v1.6.0-dev1354 if you want to try it.
h
The JetBrains Compose compiler 1.5.7.1 supports 1.9.22
p
If you're using a version catalog you could also use it like this:
Copy code
[versions]
compose-compiler-jetbrains = "1.5.7.1"
Copy code
compose {
    kotlinCompilerPlugin.set(libs.versions.compose.compiler.jetbrains.orNull)
}