我一直在尝试在许多PC上安装Android Studio。
在某些PC中,我遇到了 HTTP代理错误和脱机同步问题。因此,我不得不卸载并重新安装整个工作室。虽然这种方法在某些方面运行良好,但在其他方法中问题依然存在。
离线安装是否有任何问题 要么 安装Android Studio是否必须连接互联网,没有任何错误?
打开新项目 junit :: junit 时还有另一个突出错误。
我是初学者,在你回答我的时候请记住这一点。
谢谢。
答案 0 :(得分: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'
}
}
}