gpt4 book ai didi

Android Studio Gradle : Please remove usages of `jcenter()` Maven repository from your build scripts/JCenter is at end of life

转载 作者:行者123 更新时间:2023-12-04 10:21:18 27 4
gpt4 key购买 nike

在 Android Studio 4.2 中有一个警告:
enter image description here

buildscript {
ext.kotlin_version = '1.5.0'

repositories {
google()
//jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}

allprojects {
repositories {
google()
//jcenter()
mavenCentral()
}
}
如果我删除 jcenter()然后它找不到我的应用程序项目的一些依赖项:
   > Could not find org.koin:koin-core:2.0.1.
Required by:
project :app
> Could not find org.koin:koin-androidx-scope:2.0.1.
Required by:
project :app
> Could not find org.koin:koin-androidx-viewmodel:2.0.1.
Required by:
project :app
> Could not find com.google.ads.mediation:chartboost:8.1.0.0.
Required by:
project :app
代替 jcenter()我添加了 mavenCentral()

最佳答案

移动mavenCentral()以上jcenter() .
对您的项目进行清理/构建。
注释掉 jcenter()通过移动 mavenCentral()以上jcenter() , mavenCentral()现在成为所有非 Google Artifact 的主要存储库。通过清理和构建,所有 Artifact 现在都移至 mavenCentral() .
我不得不查找并尝试了它。删除 jcenter() 后,我彻底崩溃了能够再次为学校建立我的最终项目。

关于Android Studio Gradle : Please remove usages of `jcenter()` Maven repository from your build scripts/JCenter is at end of life,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67418153/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com