Skip to content

Instantly share code, notes, and snippets.

@smhdk
Created March 19, 2018 10:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smhdk/ebb8269399c570d0106acc2461afaaf7 to your computer and use it in GitHub Desktop.
Save smhdk/ebb8269399c570d0106acc2461afaaf7 to your computer and use it in GitHub Desktop.
Modul build.gradle dependencies example
apply plugin: 'com.android.application'
android { ... }
dependencies {
// Dependency on a local library module
compile project(":mylibrary")
// Dependency on local binaries
compile fileTree(dir: 'libs', include: ['*.jar'])
// Dependency on a remote binary
compile 'com.example.android:app-magic:12.3'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment