Thursday, June 12, 2014

Android: Solving "Error:The SDK Build Tools revision (19.0.1) is too low. Minimum required is 19.1.0"

After upgrading Android Studio to 0.6.0, I got this error

"Error:The SDK Build Tools revision (19.0.1) is too low. Minimum required is 19.1.0"

Solution:
Open build.gradle file in your project and change the buildToolsVersion from 19.0.1 to 19.1.0 like:

android {
    compileSdkVersion 19
    buildToolsVersion '19.1.0'
}

Then, Open Android SDK Manager and update the SDK Build-tools by installing version or revision (Rev.) 19.1.

Android SDK Manager: Installing Android SDK Build-tools (Rev. 19.1)

No comments:

Post a Comment