2018-11-12 23:31:04 +01:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
google()
|
2024-06-10 08:27:31 +02:00
|
|
|
mavenCentral()
|
2018-11-12 23:31:04 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
2024-06-12 13:07:28 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:8.4.2'
|
2018-11-12 23:31:04 +01:00
|
|
|
|
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2024-06-10 08:27:31 +02:00
|
|
|
mavenCentral()
|
2018-11-12 23:31:04 +01:00
|
|
|
}
|
2019-06-23 23:51:19 +02:00
|
|
|
|
2024-06-10 08:27:31 +02:00
|
|
|
tasks.withType(JavaCompile).tap {
|
|
|
|
configureEach {
|
|
|
|
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
|
|
|
|
}
|
2019-06-23 23:51:19 +02:00
|
|
|
}
|
2018-11-12 23:31:04 +01:00
|
|
|
}
|
|
|
|
|
2024-06-10 08:27:31 +02:00
|
|
|
//task clean(type: Delete) {
|
|
|
|
// delete rootProject.buildDir
|
|
|
|
//}
|