Hi! Is it possible to publish a library based on c...
# compose-desktop
d
Hi! Is it possible to publish a library based on compose-jb which would be consumable as an aar in non-KMM android app? Has this been already done maybe — any projects on github I can learn from?
l
#decompose has a jb compose module
j
the jetbrains compose runtime's gradle module metadata points to the androidx compose runtime for android variants. so an Android project consuming it will get the correct runtime. you just have to make sure that your jvm variant will work on Android, or that you supply a specific Android variant.
d
Nice! Thank you!