2017-09-25 56 views
0

我一直在嘗試在很多PC中安裝Android Studio。Android Studio中的HTTP代理錯誤

在一些電腦,我所遇到的HTTP代理錯誤和離線同步問題。因此,我不得不卸載並重新安裝整個工作室。雖然這種方法在一些情況下運行良好,但在其他情況下問題依然存在

離線安裝 或 是否存在任何問題安裝Android Studio時必須連接互聯網嗎?

還有另一個突出的錯誤,同時打開新項目,junit :: junit

我是初學者,所以請您在回答我時留心。

謝謝。

回答

0

useLibrary 'org.apache.http.legacy'放在build.gradle中,就像下面的代碼並重建你的項目;

android { 
compileSdkVersion 25 
buildToolsVersion "25.0.2" 
useLibrary 'org.apache.http.legacy' 
defaultConfig { 
    applicationId "com.user.appname" 
    minSdkVersion 19 
    targetSdkVersion 25 
    versionCode 1 
    versionName "1.0" 
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 
} 
lintOptions { 
    checkReleaseBuilds false 
} 
buildTypes { 
    release { 
     minifyEnabled false 
     proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
    } 
} 
}