Fix Android Studio build warnings by using newer gradle, mavenCentral

This commit is contained in:
Debanjum
2024-12-02 11:52:11 -08:00
parent 5d6fb07066
commit ee28d7f125
3 changed files with 5 additions and 20 deletions

View File

@@ -20,10 +20,10 @@ buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.0'
classpath 'com.android.tools.build:gradle:8.7.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
@@ -33,10 +33,10 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}
task clean(type: Delete) {
tasks.register('clean', Delete) {
delete rootProject.buildDir
}