How can I check which Kotlin version is supported ...
# compose
n
How can I check which Kotlin version is supported by a specific Compose/MP version, eg. v1.3.0-beta04-dev903? Thanks.
j
you can also sort of combine that with https://androidx.dev/storage/compose-compiler/repository
for example I have following in Compose for Desktop client that's in project using Kotlin 1.8.0
Copy code
compose {
    kotlinCompilerPlugin.set("1.4.0-dev-k1.8.0-RC-4c1865595ed")
}
(and looks btw that that page was just updated short while ago for actual 1.8.0 version!)