I have an Android Project in Android Studio 0.5.9 and Gradle is throwing this error:
Error:The SDK Build Tools revision (17.0.0) is too low. Minimum required
I didn't realize that my errors changed when I changed buildToolsVersion "19.0.0"
to buildToolsVersion "19.1.0"
in my build.gradle.
The first error was:
Error: The SDK Build Tools revision (19.0.0) is too low for project 'android'. Minimum required is 19.1.0
The second error was a little bit different, but I didn't see it:
Error: The SDK Build Tools revision (19.0.0) is too low for project ':CordovaLib'. Minimum required is 19.1.0
So I've also changed the build.gradle
inside the CordovaLib folder, and the error disappeared.