I am new to android. I wish to use https://github.com/mikepenz/MaterialDrawer navigation drawer project's library. It is provided with a dependency.
The MaterialDrawer Library is pushed to Maven Central, so you just need to add the following dependency to your build.gradle.
compile('com.mikepenz:materialdrawer:3.1.2@aar') {
transitive = true
}
There are 2 files in Gradle Scripts folder of my android studio project
build.gradle (Module :app)
build.gradle (Project : AndroidAppName)
In which folder , i should enter these dependency code ? Could you please explain the procedure of compilation/build of an android studio project.
Thanks in advance