Android experts,
Please remove usages of `jcenter()` Maven repository from your build scripts and migrate your build to other Maven repositories.
In practice today, what should I replace "jcenter" with in the below?
Unfortunately all information on this seems to have changed drastically the last year or two? Hence asking the experts here.
App is 24+ only if it matters.
// 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:4.2.0-beta06'
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}