Skip to content

Instantly share code, notes, and snippets.

View shubhamgupta2901's full-sized avatar

Shubham Gupta shubhamgupta2901

  • PayPal
  • Bengaluru, India
View GitHub Profile
@shubhamgupta2901
shubhamgupta2901 / Basics Of Dependency Management.md
Last active September 8, 2017 06:16
Understanding Basics Of Gradle's Dependency Management System and uploading your library to bintray

Type of dependencies that can be added in app's build.gradle:

compile project(":mylibrary")

It is a dependency on a local library module. It requires the build system to compile the library module with your app module and include the resulting AAR file in your APK.