Created
November 1, 2017 17:48
-
-
Save brunoguerra/74a94684d9e07028375eabd7dabc8ec1 to your computer and use it in GitHub Desktop.
Force android tu build submodules with right buildTools and Sdk versions
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
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