Update gradle and android:gradle configurations so that the project builds successfully.

This commit is contained in:
2025-07-11 13:38:27 -07:00
parent 058e854606
commit c57cdd0a35
3 changed files with 8 additions and 6 deletions

View File

@@ -2,7 +2,10 @@
buildscript {
repositories {
jcenter()
mavenCentral()
maven {
url 'https://jitpack.io'
}
google()
maven {
url 'https://maven.google.com/'
@@ -10,7 +13,7 @@ buildscript {
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.android.tools.build:gradle:8.11.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
@@ -19,7 +22,7 @@ buildscript {
allprojects {
repositories {
jcenter()
mavenCentral()
google()
}
}