2023-06-27 10:59:31 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
2024-08-09 06:51:51 +00:00
|
|
|
classpath('com.android.tools.build:gradle:8.5.2')
|
2023-06-27 10:59:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-31 21:04:22 +00:00
|
|
|
tasks.register('clean', Delete) {
|
2023-06-27 10:59:31 +00:00
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|
|
|
|
|
2023-07-31 21:04:22 +00:00
|
|
|
tasks.withType(JavaCompile).configureEach {
|
2023-06-27 10:59:31 +00:00
|
|
|
options.deprecation = true
|
2021-08-08 20:58:08 +00:00
|
|
|
}
|