首页 > 代码库 > 关于android studio Gradle报错
关于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
关于android studio Gradle报错
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。