is it safe to have `jetbrains-compose-runtime:runtime` in kmp module and `androidx.compose.runtime:r...
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