作为使用者如何应对JCenter远程仓库停止维护

Posted Henry_626

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了作为使用者如何应对JCenter远程仓库停止维护相关的知识,希望对你有一定的参考价值。

JCenter远程仓库已经宣布停止维护了,而该事件造成的影响主要表现为: 2022 年 2 月 1 日之后 android Studio 将无法从 JCenter 仓库拉取任何代码库,统统都会拉取失败,间接导致项目无法编译通过。

因为大家用的第三方框架基本都是放在 JCenter 仓库上,JCenter仓库挂掉了之后,emm,后果不堪设想……

应对措施

这里的应对措施是针对于使用者的哈,如果您是开源库作者的话可参考这篇文章,里面进行了详细的介绍:https://www.jianshu.com/p/4f49bb9e820e
对于使用者来说,JCenter 仓库用不了了,那就换成 JCenter 的镜像仓库
可使用 阿里云云效 Maven 库华为开源镜像站 ,以及 JitPack远程仓库MavenCentral远程仓库,在项目根目录下的 build.gradle 文件进行如下配置:

buildscript 
    repositories 
        // 使用 镜像 来解决JCenter停止维护问题
        // 阿里云云效仓库:https://maven.aliyun.com/mvn/guide
        maven  url 'https://maven.aliyun.com/repository/jcenter' 
        maven  url 'https://maven.aliyun.com/repository/google' 
        // 华为开源镜像:https://mirrors.huaweicloud.com
        maven  url 'https://repo.huaweicloud.com/repository/maven' 
        // JitPack 远程仓库:https://jitpack.io
        maven  url 'https://jitpack.io' 
        // MavenCentral 远程仓库:https://mvnrepository.com
        mavenCentral()
        google()
//        jcenter()
        dependencies 
            classpath 'com.android.tools.build:gradle:4.1.3'
        
    


allprojects 
    repositories 
        maven  url 'https://maven.aliyun.com/repository/jcenter' 
        maven  url 'https://maven.aliyun.com/repository/google' 
        maven  url 'https://repo.huaweicloud.com/repository/maven' 
        maven  url 'https://jitpack.io' 
        mavenCentral()
        google()
//        jcenter()
    

我个人使用时只用了阿里云的Maven库就能正常使了哈:


本文参考:

郭霖:https://mp.weixin.qq.com/s/_MSpAVelQsOJFuin3QZh6g

Android轮子哥:https://www.jianshu.com/p/4f49bb9e820e

以上是关于作为使用者如何应对JCenter远程仓库停止维护的主要内容,如果未能解决你的问题,请参考以下文章

作为使用者如何应对JCenter远程仓库停止维护

作为使用者如何应对JCenter远程仓库停止维护

解决android studio引用远程仓库下载慢(JCenter下载慢)

Android Studio 项目上传到Jcenter完全攻略

Android Studio 项目上传到Jcenter完全攻略

有关Android Studio中的 Jcenter仓库