Change jcenter() to mavenCentral

Ref: https://developer.android.com/studio/build/jcenter-migration
This commit is contained in:
Fareesh Vijayarangam
2022-10-31 18:42:00 +05:30
committed by GitHub
parent 8bf7b8fe10
commit 13c5002fcf

View File

@@ -5,7 +5,7 @@ buildscript {
ext.kotlin_version = '1.6.10' ext.kotlin_version = '1.6.10'
repositories { repositories {
google() google()
jcenter() mavenCentral()
} }
dependencies { dependencies {
@@ -17,7 +17,7 @@ buildscript {
rootProject.allprojects { rootProject.allprojects {
repositories { repositories {
google() google()
jcenter() mavenCentral()
} }
} }