Created
July 7, 2017 13:32
-
-
Save Subtle-fox/d3286b8bafce50311bd8ef65bc2da43a to your computer and use it in GitHub Desktop.
Samle how to use variables in build.gradle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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