Android Studio Gradle BuildTools Revision

后端 未结 11 897
故里飘歌
故里飘歌 2020-12-08 03:57

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         


        
11条回答
  •  伪装坚强ぢ
    2020-12-08 04:32

    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.

提交回复
热议问题