android,kotlin2022. 6. 27. 18:09

[android]Please remove usages of `jcenter()` Maven repository from your build scripts and migrate your build to other Maven repositories

 

issue 

Please remove usages of `jcenter()` Maven repository from your build scripts and migrate your build to other Maven repositories.
This repository is deprecated and it will be shut down in the future.

[참조] https://stackoverflow.com/questions/66400264/jcenter-is-at-end-of-life-android-lint-warning-what-is-the-replacement

 

"JCenter is at end of life" android lint warning, what is the replacement?

Android Studio Arctic Fox Canary 8 started to warn that JCenter is at end of life But I cannot just delete jcenter() declarations since it hosts a lot of android artifacts, it would lead to Could ...

stackoverflow.com

 

 

//        jcenter() // Warning: this repository is going to shut down soon
        mavenCentral()

이렇게 바꿔주면 됩니다.

Posted by thdeodls85