Android Studio Gradle BuildTools Revision

后端 未结 11 925
故里飘歌
故里飘歌 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:38

    I fixed this issue by going into myAppProject/actionbarsherlock/build.gradle and changing

    android {
        compileSdkVersion 14
        buildToolsVersion '17.0.0'
    

    to this

    android {
        compileSdkVersion 14
        buildToolsVersion '19.1.0'
    

提交回复
热议问题