module need to have a commonmain right and those classes will only be visible in the module ?
Q2: I don't need android library plugin right ?
k
Kevin S
11/16/2024, 2:29 AM
Q1. classes that are not marked as private or internal will be visible to the module that is implementing it.
Q2. I believe you only need the android library plugin if you have code in an
androidMain
directory, though I'm not entirely sure about that
Kevin S
11/16/2024, 2:30 AM
If it helps you can try looking at the droidcon repo, it has two shared modules, one with compose code, and one module is implemented in another one
🙏 1
k
Karan Sharma
11/16/2024, 2:30 AM
thank you very much, will have a look at the repo.