s3rius
02/19/2023, 1:40 PMshared
, app-android
and app-desktop
modules. Is there any general consensus what is supposed to go into the androidMain
source-set of shared
vs what goes into app-android
directly?
My thoughts right now:
• Permission-handling logic: that might live in androidMain actually
• Anything that needs android-specific plugins like google-services probably won't work well outside app-main?
• Does it make sense to puts things into `shared`'s manifest file if used inside androidMain
? I assume shared
is basically treated as a library, so manifests should be merged.
Right now I'm trying to stuff everything into shared
and app-android
and app-desktop
are mostly just for bootstrapping the application.Big Chungus
02/19/2023, 2:36 PMCasey Brooks
02/20/2023, 3:28 PMapp-android
and app-desktop
modules and move that stuff directly into your application modules. I think they will just be confusing you more than actually helpingBig Chungus
02/20/2023, 3:33 PMCasey Brooks
02/20/2023, 3:36 PMs3rius
02/20/2023, 8:29 PM