Closed. This question is not reproducible or was caused by typos。它当前不接受答案。
想要改善这个问题吗?更新问题,以便将其作为on-topic用于堆栈溢出。
2年前关闭。
Improve this question
我无法通过新项目从jcenter获得kotlin pom。
我所要做的就是走File-> New Project并创建一个没有 Activity 的新项目。
尝试构建时出现以下错误:
我的build.gradle
如果我在网络浏览器中转到该URL,则无法连接任何一个。 https://jcenter.bintray.com/
这是否意味着站点暂时关闭,或者我需要添加一些内容到构建文件中吗?
顺便说一句,如果这很重要,我会选择Java而不是Kotlin进行安装,因此即使不确定为什么要尝试获取Kotlin的东西也是如此。
...
...
想要改善这个问题吗?更新问题,以便将其作为on-topic用于堆栈溢出。
2年前关闭。
Improve this question
我无法通过新项目从jcenter获得kotlin pom。
我所要做的就是走File-> New Project并创建一个没有 Activity 的新项目。
尝试构建时出现以下错误:
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()
...
10-08 03:03