2024-01-23 18:03:09 -06:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2024-03-31 18:34:51 -05:00
|
|
|
ext {
|
|
|
|
agp_version = '8.3.1'
|
|
|
|
}
|
2024-01-23 18:03:09 -06:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
2024-03-31 18:34:51 -05:00
|
|
|
google()
|
2024-01-23 18:03:09 -06:00
|
|
|
}
|
|
|
|
dependencies {
|
2024-03-31 18:34:51 -05:00
|
|
|
classpath "com.android.tools.build:gradle:$agp_version"
|
2024-01-23 18:03:09 -06:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|