fix: replace jcenter with mavenCentral in export gradle files (PR #1896)

jcenter is deprecated, we can use mavenCentral as one of the default maven repo.
This commit is contained in:
Goooler
2023-06-06 20:26:01 +08:00
committed by GitHub
parent 2e3579a8fd
commit df313dbfec
@@ -1,7 +1,7 @@
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.2'
@@ -11,7 +11,7 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}