Gradle version 1.6 is required. Current version is 1.8-20130730220035+0000

前端 未结 7 683
轻奢々
轻奢々 2020-12-24 01:23

Just updated Android-Studio to version 0.2.7 an now I get the error message from the title:

\"e

7条回答
  •  独厮守ぢ
    2020-12-24 02:17

    In my case, i updated gradle to the latest version (1.8) and then changed the gradle.build files (for my project and for the libraries i was using) like these:

    dependencies {
        classpath 'com.android.tools.build:gradle:0.6.1+'
    }
    

    The Synchronize files and Refresh/Invalidate cache. This seems to solve the problem. I think that Gradle in order to determine the minimum required version just reads the above value.

提交回复
热议问题