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
Open Android SDK Manager and make sure you have Build Tools 19.1 downloaded. Double-check.
Then find build/app.gradle and change buildToolsVersion number to '19.1':
apply plugin: 'android' android { compileSdkVersion 19 buildToolsVersion '19.1' defaultConfig { minSdkVersion 10 targetSdkVersion 19 }