Hello, I would like to test compose `1.6.10-Beta01...
# compose-desktop
k
Hello, I would like to test compose
1.6.10-Beta01
with kotlin
2.0.0-RC1
in my multiplatform app. Desktop and web works fine, however android complaing about not compatible compose compiler version. Is it possible to (and how to) achieve compilation for android in such configuration?
This version (1.5.12) of the Compose Compiler requires Kotlin version 1.9.23 but you appear to be using Kotlin version 2.0.0-RC1 which is not known to be compatible.
j
In the repo
maven("<https://androidx.dev/storage/compose-compiler/repository/>")
there's version
1.5.13-dev-k2.0.0-RC1-50f08dfa4b4
of the Jetpack Compose compiler available, which supports K2
k
Great clue, thanks a lot!
🙂 1