码迷,mamicode.com
首页 > 移动开发 > 详细

关于android studio Gradle报错

时间:2014-11-03 17:54:59      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:android   http   io   ar   os   java   for   sp   div   

今天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

关于android studio Gradle报错

标签:android   http   io   ar   os   java   for   sp   div   

原文地址:http://my.oschina.net/luozheng/blog/340249

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!