I have a project created using Gradle in Android Studio v 0.3.2. My project has dependencies on two other modules (android library). The structure of the project is well defined using the build.gradle files. The problem is ... when I run the project on an Android device, I install 3 apk on my device. One of them is the main project (the only correct one), and the other two are imported modules (I do not want to install these two). How can I achieve this? Or what am I doing wrong?
Project Structure:
- MyLibModule
- Mainproject
- MainProject-> libraries → MyOtherModule
Where MyLibModule is on the same path as the main project, because I also need this module in another project.
Just to be clear: the whole project built OK , all the dependencies are fine, but why am I getting 3 APKs on my device?
android android-studio android-gradle apk
Primoz990
source share