Hi folks, there is anyplan to have a separate arti...
# compose-desktop
s
Hi folks, there is anyplan to have a separate artifact for the Jetbrains Compose Compiler and Compose Multiplatform artifacts? like how works in Android?
i
It is already published separately, it just isn't documented yet how to apply it without upgrading the Compose Gradle plugin. You can look at the versions here and apply it this way:
Copy code
compose.kotlinCompilerPlugin.set("1.4.5-rc03")
s
If I did understand correctly @Igor Demin, the Compose Multiplatform plugin version is not bound the a Kotlin version, it resolves the proper compose compiler version based in the current Kotlin Gradle Plugin version? that is right?
Just want to understand if I can: • Keep Compose Multiplatform Gradle Plugin update without Updating Kotlin • Update Kotlin without requiring to update Compose Multiplatform Gradle plugin and specifying directly the Compose Kotlin Compiler plugin version.
i
it resolves the proper compose compiler version based in the current Kotlin Gradle Plugin version? that is right?
Correct. Plugin applies different compiler versions based on the Kotlin version
• Keep Compose Multiplatform Gradle Plugin update without Updating Kotlin
Yes, you can do that.
Update Kotlin without requiring to update Compose Multiplatform Gradle plugin and specifying directly the Compose Kotlin Compiler plugin version
Yes, you can use the latest Kotlin without updating Compose Multiplatform if you specify the compiler plugin manually (automatic resolution will be disabled)