我正在尝试在android studio 3.3中运行“第一个应用程序”应用程序。我的连接是通过代理。当我尝试运行“第一个应用”时,android studio向我显示下一个错误:
错误:无法获取'https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.2.71/kotlin-gradle-plugin-1.2.71.pom'。从服务器收到状态码407:需要验证
启用Gradle“离线模式”并同步项目
我在以下位置设置了代理:“文件/设置-> HTTP代理”,并尝试了“检查连接”按钮。此链接“ https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.2.71/kotlin-gradle-plugin-1.2.71.pom”工作正常。
我还取消了“设置/构建,执行... /毕业”中的“脱机工作”复选框,并再次同步项目,但是它仍然显示相同的问题。
我仅在“文件/设置-> HTTP代理”中设置代理,足够了吗?还有更多地方吗?
在“ build.gradle”文件中具有以下内容:
buildscript {
ext.kotlin_version = '1.2.71'
repositories {
mavenCentral()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenCentral()
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
如何解决该错误? 谢谢。