Update repository config in build.gradle.

PiperOrigin-RevId: 603605996
Change-Id: I09a18821f15bc3eb1777c8d2351cac901384e540
This commit is contained in:
Google ML Kit 2024-02-02 08:33:37 +00:00 committed by Chengji Yan
parent 839d69b1c9
commit c7f3f3f616

View File

@ -2,8 +2,9 @@ buildscript {
ext.kotlin_version = '1.9.0'
repositories {
mavenLocal()
mavenCentral()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
@ -14,7 +15,11 @@ buildscript {
allprojects {
repositories {
mavenLocal()
mavenCentral()
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}