在 Android Studio 中,我只是创建了一个新项目,它说:
In Android Studio, I simply created a new project, and it says that:
Gradle 项目同步失败.基本功能将无法正常工作.
我已经在网上搜索并尝试了所有方法,但没有任何效果.我有使用 Gradle 1.11 的 Android Studio v0.4.6.
I have searched the web and tried everything, but nothing worked. I have v0.4.6 of Android Studio using Gradle 1.11.
错误信息是:
FAILURE: Build failed with an exception.
* Where:
Build file 'C:UsersVinnieAndroidStudioProjectsMyFirstAppProjectMyFirstAppuild.gradle' line: 9
* What went wrong:
A problem occurred evaluating project ':MyFirstApp'.
> Gradle version 1.10 is required. Current version is 1.11. If using the gradle wrapper, try editing the distributionUrl in C:UsersVinnieAndroidStudioProjectsMyFirstAppProjectMyFirstAppgradlewrappergradle-wrapper.properties to gradle-1.10-all.zip
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
Total time: 1 mins 7.011 secs
Android插件0.8.x不支持Gradle 1.11,需要使用1.10.
The Android plugin 0.8.x doesn't support Gradle 1.11, you need to use 1.10.
您可以在Gradle 控制台"选项卡中阅读正确的错误消息.
You can read the proper error message in the "Gradle Console" tab.
编辑
你需要这样修改gradle/wrapper/gradle-wrapper.properties文件:
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http://services.gradle.org/distributions/gradle-1.10-all.zip
这篇关于Android Studio - Gradle 同步项目失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
更新到 Android Build Tools 25.1.6 GCM/FCM 后出现 IncompIncompatibleClassChangeError after updating to Android Build Tools 25.1.6 GCM / FCM(更新到 Android Build Tools 25.1.6 GCM/FCM 后出现 Incompatible
如何在 gradle 中获取当前风味How to get current flavor in gradle(如何在 gradle 中获取当前风味)
如何修复“意外元素<查询>在“清单How to fix quot;unexpected element lt;queriesgt; found in lt;manifestgt;quot; error?(如何修复“意外元素lt;查询gt;在“清单中找到错误
基于 Android Gradle 中多风味库的多风味应用Multi flavor app based on multi flavor library in Android Gradle(基于 Android Gradle 中多风味库的多风味应用)
Android 依赖在编译和运行时有不同的版本Android dependency has different version for the compile and runtime(Android 依赖在编译和运行时有不同的版本)
本地 aar 库的传递依赖Transitive dependencies for local aar library(本地 aar 库的传递依赖)