https://kotlinlang.org logo
Title
a

Arkadii Ivanov

01/15/2022, 10:01 PM
Is it safe to publish a library which depends Compose (foundation, etc.) and Compose compiler of different versions? E.g. Compose
1.0.5
and compiler
1.1.0-rc02
. I want to finally update Kotlin to 1.6.10. Wondering if there any compatibility concerns I should be aware of.
y

yschimke

01/15/2022, 10:23 PM
Not an official answer, but based on what Jetbrains have said previously for kotlin version compatibility it would be worth reporting the bug.
a

Adam Powell

01/15/2022, 10:25 PM
We haven't added any new runtime API that the compiler targets, you should be able to use the 1.1 compiler plugin with runtime 1.0.5 without issues
a

Arkadii Ivanov

01/15/2022, 10:25 PM
Thanks!
👍 1