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
olonho
03/04/2022, 5:19 PM
Nope, no such build at the moment
👍 1
r
ralf
03/04/2022, 5:22 PM
Thanks for confirming.
j
jw
03/04/2022, 6:40 PM
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
ralf
03/04/2022, 7:11 PM
Oh, I wasn’t sure if that’s the case. That makes it much easier 👍