https://kotlinlang.org logo
Title
j

Javier

04/07/2023, 6:03 PM
Is there any way to know which version of compose compiler is higher (Google vs JetBrains one) without failing the build, via Gradle?
i

Igor Demin

04/07/2023, 6:14 PM
The JetBrains compilers are usually built from the same commit and have the same version number as the Google ones, but not always. Comparing what is higher is not always possible. For example,
org.jetbrains.compose.compiler:compiler:1.4.5-rc03
that supports
1.8.20
is just built from this commit with additional patches for JS/native targets.
without failing the build
Is there some conflict between them? They shouldn't be applied both at the same time to one module.
j

Javier

04/07/2023, 10:39 PM
I would like to set the correct version/artifact which can support the newest kotlin version as far as possible. But now it can only be done by checking it manually, instead of just letting renovate to upgrade both dependencies and have a condition with both of them to choose the correct one