本文介绍了必须使用Gradle 2.10版.当前版本是2.8错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

项目中正在使用以下内容-

Following things are using in the project-

classpath 'com.android.tools.build:gradle:2.0.0-alpha9'

根据错误,我更改了分发网址

As per the error I changed the distribution url

https\://services.gradle.org/distributions/gradle-2.8-all.zip

https\://services.gradle.org/distributions/gradle-2.10-all.zip

但仍然出现以下错误

but still getting the following error

推荐答案

将您的android studio版本更新为1.5.1.您的问题将得到解决.如果您的android版本已更新.试试看:

update your android studio version to 1.5.1. Your problem will be solved.If your android version is updated. Try it out:

更改设置>构建,执行,部署>构建工具> Gradle> Gradle主路径

设置使用默认的gradle包装器并编辑 Project \ gradle \ wrapper \ gradle-wrapper.properties 文件字段 distributionUrl ,如下所示:

set Use default gradle wrapper and edit Project\gradle\wrapper\gradle-wrapper.properties files field distributionUrl like this:

distributionUrl=https://services.gradle.org/distributions/gradle-2.10-all.zip

尝试

这篇关于必须使用Gradle 2.10版.当前版本是2.8错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-03 20:42