I'd like to create a Compose library which can be ...
# compose
m
I'd like to create a Compose library which can be consumed by Compose Android and Compose Desktop projects. Because of some differences like loading resources etc I think it would be the best to create a Kotlin Multiplatform project which builds 2 artifacts: a .jar which can be consumed by Compose Desktop projects and an .aar which can be consumed by Compose Android projects. Is there an example app out there so that I could take look at project's the setup?
c
https://github.com/JetBrains/compose-jb That link has 3 important directories for you to check out. /tutorials, /examples, and /templates Also, check out #compose-desktop if you haven't already
m
Oh cool, thank you! 💯