Skip to content

Instantly share code, notes, and snippets.

@brunoguerra
Created November 1, 2017 17:48
Show Gist options
  • Save brunoguerra/74a94684d9e07028375eabd7dabc8ec1 to your computer and use it in GitHub Desktop.
Save brunoguerra/74a94684d9e07028375eabd7dabc8ec1 to your computer and use it in GitHub Desktop.
Force android tu build submodules with right buildTools and Sdk versions
subprojects {
afterEvaluate {project ->
if (project.hasProperty("android")) {
android {
compileSdkVersion 25
buildToolsVersion '25.0.0'
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment