Skip to content

Instantly share code, notes, and snippets.

@Subtle-fox
Created July 7, 2017 13:32
Show Gist options
  • Save Subtle-fox/d3286b8bafce50311bd8ef65bc2da43a to your computer and use it in GitHub Desktop.
Save Subtle-fox/d3286b8bafce50311bd8ef65bc2da43a to your computer and use it in GitHub Desktop.
Samle how to use variables in build.gradle
ext {
support_version = '25.0.0'
play_service_version = '11.0.0'
}
android {
...
}
dependencies {
compile "com.android.support:appcompat-v7:${support_version}"
compile "com.google.android.gms:play-services-location:${play_service_version}"
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment