You guys are planing in the future wrap the code f...
# compose
s
You guys are planing in the future wrap the code from androidx.ui to a commonMain? Like compose runtime?
a
Sorry, I don't understand the question
f
I think the question is “The compose runtime is treated as a library independent to Android, will you extract the platform inspecific parts of androidx.ui into a separate artifact, publish that in a similar way to compose runtime, and then make an Android-only adapter?”
❤️ 1
s
@Fudge Thank you, is exactly that. Sorry for not being so clear.
a
It's basically already set up that way. It makes testing and layering things easier.
f
Hmm, I thought otherwise, let me double check
a
Check the separation into
ui-platform
modules and the like
We were trying out some different variants of module vs. mpp separation for it in places but it's there and part of the design
f
are the commented out `expect/actual`s gonna get uncommented or are those just leftovers?
a
Intention is to uncomment them. iirc we were having some IR backend or other configuration-related issues with them a while back and haven't revisited yet
f
It looks like even compose-runtime itself depends on android classes for compilation.
androidx.compose.ViewComposer
, wouldn't this prevent targeting anything other than the JVM?
a
some stuff is currently hardcoded just for expediency getting some of the system up and running
f
OK, good to know