I'm just moving on to Android Studio, and I'm a little confused about how to manage my projects / modules.
For example, in Eclipse I would have 3 projects:
- Library project (has several jar libraries)
- Application 1 project (uses the library project, as well as some other jar libraries)
- Application 2 project (also uses the library project, as well as some other jar libraries, does not use the application 1 project)
So, if I understood correctly, I would create 2 projects in Android Studio, one for AP1, one for AP2, and in both projects I would add a library project as a module?
When I do this, I suddenly get two Facets in the Library module called Android and Android2 . What does it mean?
In addition, if I go a little more and add several libraries as modules, I get (on the "Libraries" tab in the project settings) several libraries, libs , libs1 , libs2 . They may contain double cans, which AS complains about.
If someone could clarify some things, that would be great. Thanks!
source share