This version of Android Studio is incompatible with the Gradle Plugin used.

今天在使用butterknife的时候,下载的github上面8.5.1版本,编译时报错说需要使用最新的gradle plugin,
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
  • 1
  • 1

升级了gradle到2.14.1版本之后,好吧,这个错误没了,又有了新的错误..

This version of Android Studio is incompatible with the Gradle Plugin used. Try disabling Instant Run (or updating either the IDE or the Gradle plugin to the latest version
  • 1
  • 1
这句话意思是说,当前as的版本和使用的gradle 插件不匹配,可以试着关闭instant run功能,(或更新ide和gradle插件到最新版本).

于是在file-> setting ->Build,Execution,Deployment -> Instant Run -> 取消所有的勾选, 再clean一下project,之后问题就解决了.
四个选项全部取消勾选

/
在Stack Overflow上面看到也有部分人通过Clean project,然后删除build文件夹,也解决了问题.链接:http://stackoverflow.com/questions/36709514/android-studio-build-error-this-version-of-android-studio-is-incompatible-with

猜你喜欢

转载自blog.csdn.net/guim_007/article/details/72982660