2017-02-12 79 views
2

我需要預安裝筆記本電腦並切換到Windows 10。在此之前,我做了和Android Studio中2.2.3救了我的項目,我的預安裝後下載Android Studio中的版本相同,但是當我選擇打開現有項目,我得到了以下信息:Android Studio 2.2.3:Gradle項目同步失敗。基本功能(例如編輯,調試)將無法正常工作

Failed to sync gradle project 'ApplicationName' Error:Unable to find method 'org.gradle.api.artifacts.Configuration.setExtendsFrom(Ljava/lang/Iterable;)Lorg/gradle/api/artifacts/Configuration;'.

Possible causes for this unexpected error include: Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.)

The state of a Gradle build process (daemon) may be corrupt. Stopping all Gradle daemons may solve this problem.

Your project may be using a third-party plugin which is not compatible with the other plugins in the project or the version of Gradle requested by the project. Blockquote

我所做的一切Android Studio提出了三個解決我的項目的步驟,但都沒有工作。

+0

你是什麼版本的Gradle? –

+0

gradle版本:1.8 – Victoria

回答

5

你gradle這個版本是:1.8它不工作了,所以你可能需要將其更新:

進入 - >https://gradle.org/install 瞭解最新優化版本號。

2-在你的項目目錄導航到\gradle\wrapper\目錄,並編輯: gradle-wrapper.properties文件。

變化:

https://services.gradle.org/distributions/gradle-1.8-all.zip 

到:

https://services.gradle.org/distributions/gradle-3.3-all.zip

3-去工具→安卓→同步工程與搖籃文件

4-如果沒有按同步不要重新啓動Android studio

+0

我嘗試了上述步驟,但又失敗了,並提示錯誤:'錯誤:配置根項目'MyApplication2'出現問題。 >無法解析配置':classpath'的所有依賴關係。嘗試訪問方法com.google.common.collect.Iterators.emptyIterator()Lcom/google/common/collect/UnmodifiableIterator;從類org.gradle.api.internal.DefaultDomainObjectCollection'你能幫我解決這個問題嗎?謝謝 –

+0

謝謝,它工作。 – Tia

1

更新你的gradle。

打開文件>項目結構>項目標籤

enter image description here

Android Studio中已建成的項目結構菜單,檢查和更新,並gradle這個插件在當前項目中使用。

下面的網站給出了關於如何更新Android Studio的gradle和gradle插件的詳細說明。

Update gradle plugin Android Studio

0

只要到文件 - >的Invalidate緩存/重新啓動 - >廢止和重新啓動

相關問題