关于android studio Gradle报错

今天android studio跑项目,build了一下,始终跑不起,把gradle和android studio都更新了一下,还是不行,

一直报这个错误

UnsupportedMethodException
         Failed to set up Android modules in project ‘Project‘: Unsupported method: SourceProvider.getJniDirectories().
         The version of Gradle you connect to does not support that method.
         To resolve the problem you can change/upgrade the target version of Gradle you connect to.
         Alternatively, you can ignore this exception and read other information from the model.

这时候搜了下,才知道是build.gradle里面的问题:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath ‘com.android.tools.build:gradle:0.14.0‘

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

其中的这句是个bug

classpath ‘com.android.tools.build:gradle:0.14.0‘

改成

classpath ‘com.android.tools.build:gradle:0.13.+‘

就OK了

参考 fly to stackoverflow

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。