Skip to content

Instantly share code, notes, and snippets.

@tylerchesley
Created May 7, 2015 15:50
Show Gist options
  • Select an option

  • Save tylerchesley/0fbdf9c785727afef356 to your computer and use it in GitHub Desktop.

Select an option

Save tylerchesley/0fbdf9c785727afef356 to your computer and use it in GitHub Desktop.
Control compileSdk and buildTools version from the root build.gradle
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
}
@dustin-graham

Copy link
Copy Markdown

this will make all the modules being built agree?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment