Unable to get dependencies from jcenter with a new project(无法通过新项目从 jcenter 获取依赖项)
问题描述
我无法通过新项目从 jcenter 获取 kotlin pom.
I'm unable to get kotlin pom from jcenter with a new project.
我所做的只是文件->新建项目并创建了一个没有任何活动的新项目.
All I have done is gone File->New Project and created a new project with no activity.
我在尝试构建时收到以下错误:
I'm getting the following error when it tries to build:
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
My 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/
If I go in my web browser to that URL I can't connect either. https://jcenter.bintray.com/
这是否意味着站点暂时关闭,或者我需要在构建文件中添加什么内容?
Does this mean the site is temporarily down or is there something I need to add to my build files?
顺便说一句,我为该项目选择了 Java,而不是设置 Kotlin,如果这很重要的话,甚至不确定它为什么要尝试获取 kotlin 的东西.
BTW I selected Java for the project and not Kotlin on setup if that matters so not even sure why it's trying to get kotlin stuff.
推荐答案
jcenter 当前已关闭.最后将 mavenCentral()
添加到 project build.gradle
文件中的两组存储库对我来说是一种解决方法:
jcenter is currently down. In the end adding mavenCentral()
to both sets of repositories in the project build.gradle
file worked as a workaround for me:
buildscript {
repositories {
mavenCentral()
google()
jcenter()
...
allprojects {
repositories {
mavenCentral()
google()
jcenter()
...
这篇关于无法通过新项目从 jcenter 获取依赖项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法通过新项目从 jcenter 获取依赖项


- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01