2015-12-16 126 views
0

我使用android studio 1.4構建了一些android項目。今天我的電腦壞了,我重新安裝了我的操作系統。我安裝了android studio 1.5,但它不適用於舊的項目。我建立了一些新的項目,沒有錯誤。當我打開舊的項目時,出現錯誤。AndroidStudio更新後Gradle項目刷新失敗

錯誤:無法通過代理隧道。代理返回「HTTP/1.1 400錯誤請求」

我找不到任何有關此錯誤的信息,我該如何處理舊項目? enter image description here

回答

1

把這段代碼放在你的主build.gridle文件中,可能是它試圖使用最新的gradle,而且你在之前的項目中使用過舊的代碼。

// Top-level build file where you can add configuration options common to all sub-projects/modules. 

buildscript { 
    repositories { 
     jcenter() 
    } 
    dependencies { 
     classpath 'com.android.tools.build:gradle:1.3.0' 

     // NOTE: Do not place your application dependencies here; they belong 
     // in the individual module build.gradle files 
    } 
} 

allprojects { 
    repositories { 
     jcenter() 
    } 
} 
+0

此代碼已經在build.gradle中。我的代碼和你的一樣。我發現我的新項目中的代碼是gradle:1.5.0.So我試圖將1.3.0更改爲1.5.0,但它仍然無效。此錯誤似乎是關於網絡? –

0

我解決了這個problem.Just在gradle-> wrapper-> gradle這個-wrapper.properties-> distributionUrl = HTTPS改變的信息://services.gradle.org/distributions/gradle-2.4-all。 zip https://services.gradle.org/distributions/gradle-2.8-all.zip.And它適用於我。

相關問題