I have a little problem compiling an android application using module dependencies in Android Studio.
So, I want my application to use the library \'slidingmenu\' (l
For people using the gradle way (explicitly rather than being generated by the IDE):
Add this to your app's build.gradle
:
dependencies {
....
// other dependencies...
implementation project(':module-name')
}
You should put your library modules inside the Application Project. In order to specify a module dependency, simply:
Then, this module will show up in your project. Then, you need to add it to Application as a library dependency. Once again, in your Module Settings: