If I want to create a new module that just houses ...
# compose
c
If I want to create a new module that just houses my composables... would that be a "android app module" or "android library module"? Looks like the difference is id 'com.android.application' vs id 'com.android.library'
s
library module. you can't import app modules
c
Thanks. I wasn't sure as I've never made a multi module app, but it makes sense that it'd be a library.
👍 1
j
Be aware that there are some limitations with library modules currently, e.g. not being able to deploy previews 😞
c
Thanks! I was in fact finally able to see previews for the first time in a while with a separate module. I have not tried to deploy a preview yet. Do you know if theres an issuetracker to star for this as I'd eventually would love to deploy a preview to an android device... but right now I'm happy IDE previews are working in this separate module.