Hi friends, is there a Compose-Kotlin compatibilit...
# compose
s
Hi friends, is there a Compose-Kotlin compatibility map for
dev
Compose versions?
s
This is for Compose Compiler I want to know if there's one for Compose Multiplatform? E.g. which Kotlin version is supported for Compose MP 1.6.0-alpha01?
p
What I do is
git clone
the repo and
git ckeckout
to the version tag. Then check in the files the kotlin version it was built with
That one you mentioned seems to be built with
1.9.21
. check `/gradle-plugins/gradle.properties`file
e
the Compose compiler plugin version needs to be compatible with the Kotlin compiler version, but the Compose compiler plugin version and the Compose library version do not need to match
👍 1