Is it possible to override the Compose compiler ve...
# compose-desktop
r
Is it possible to override the Compose compiler version? I’m currently testing Kotlin 1.6.20 and Google provides a special build for the Compose Compiler
1.2.0-dev-k1.6.20-RC-21f332eaa05
. Does Jetbrains provide a similar build for Desktop?
o
Nope, no such build at the moment
👍 1
r
Thanks for confirming.
j
The compiler used for targeting desktop and the one used for targeting Android are the same thing. You can use a dependency substitution rule to replace the JetBrains one with the regular Android one and it will work fine.
👌 3
1
r
Oh, I wasn’t sure if that’s the case. That makes it much easier 👍