Is it safe to publish a library which depends Comp...
# compose
a
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
Not an official answer, but based on what Jetbrains have said previously for kotlin version compatibility it would be worth reporting the bug.
a
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
Thanks!
👍 1