is it safe to have `jetbrains-compose-runtime:runt...
# compose
v
is it safe to have
jetbrains-compose-runtime:runtime
in kmp module and
androidx.compose.runtime:runtime
in android module? more context in 🧵
in my project, i use
jetbrains-compose-runtime
for non-UI purpose which has its own composition, custom Applier, etc. also, android app uses
androidx.compose.runtime
for Compose UI. Is there any possibility of clashes between these two runtimes?
m
It should work fine, make sure that you are using the same compose compiler version
v
Thanks Mohamed 🙂
e
The Jetbrains artifacts redirect to the Jetpack artifacts for Android
🙏 1