Created
May 7, 2015 15:50
-
-
Save tylerchesley/0fbdf9c785727afef356 to your computer and use it in GitHub Desktop.
Control compileSdk and buildTools version from the root build.gradle
This file contains 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
in the root project's build.gradle: | |
ext { | |
compileSdkVersion = 19 | |
buildToolsVersion = "19.0.1" | |
} | |
in all the android modules: | |
android { | |
compileSdkVersion rootProject.ext.compileSdkVersion | |
buildToolsVersion rootProject.ext.buildToolsVersion | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this will make all the modules being built agree?