android – 无法通过新项目从jcenter获取依赖关系
作者:互联网
我无法通过一个新项目从jcenter获得kotlin pom.
我所做的就是File-> New Project并创建了一个没有活动的新项目.
我尝试构建时遇到以下错误:
ERROR: Could not GET 'https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.3.21/kotlin-stdlib-jdk8-1.3.21.pom'. Received status code 502 from server: Bad Gateway Enable Gradle 'offline mode' and sync project
我的build.gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
如果我在我的网络浏览器中访问该URL,我也无法连接. https://jcenter.bintray.com/
这是否意味着该网站暂时关闭或者我需要添加到我的构建文件中?
顺便说一下,我选择了Java作为项目,而不是Kotlin的设置,如果这很重要,甚至不确定为什么它试图得到kotlin的东西.
解决方法:
jcenter目前正在下降.最后,将mavenCentral()添加到项目build.gradle文件中的两组存储库,作为我的解决方法:
buildscript {
repositories {
mavenCentral()
google()
jcenter()
…
allprojects {
repositories {
mavenCentral()
google()
jcenter()
…
标签:android,android-gradle,jcenter 来源: https://codeday.me/bug/20190923/1815713.html