1

我最近将我的 Android Studio 从 0.2.9 更新到 0.3.1,当我尝试编译我的项目时出现错误:

org.gradle.tooling.GradleConnectionException:无法使用 Gradle 发行版“ http://services.gradle.org/distributions/gradle-1.7-bin.zip ”执行构建。:无法使用 Gradle 发行版“ http:// ”执行构建services.gradle.org/distributions/gradle-1.7-bin.zip '。

我尝试使用终端并通过使用gradlew clean然后成功清理和重建gradlew build。我什至通过使用使缓存无效,File -> Invalidate Caches / Restart但我仍然无法使用 Android Studio 构建。

您对我为什么会遇到此问题以及如何解决此问题有任何想法吗?

编辑#1:当我进入时Settings -> Gradle出现错误:“ Gradle location is unknown”。那是问题吗?那条路径应该指向哪里?

4

1 回答 1

1

我已经通过使用这篇文章中的建议解决了这个问题。

我已经从<AppNameProject>/gradle/wrapper/更新了gradle-wrapper.properties

distributionUrl=http\://services.gradle.org/distributions/gradle-1.7-bin.zip

distributionUrl=http\://services.gradle.org/distributions/gradle-1.8-bin.zip

build.gradle来自<AppNameProject>/<AppName>/

dependencies {
    classpath 'com.android.tools.build:gradle:0.5.+'
}

dependencies {
    classpath 'com.android.tools.build:gradle:0.6.+'
}
于 2013-11-08T10:57:52.933 回答