2023-04-19 22:03:35 +02:00
|
|
|
plugins {
|
2024-04-10 14:40:15 +02:00
|
|
|
id("com.android.application") version "8.3.2" apply false
|
2024-03-08 03:15:22 +01:00
|
|
|
id("org.jetbrains.kotlin.android") version "1.9.23" apply false
|
2021-11-21 21:10:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
tasks.withType<JavaCompile> {
|
|
|
|
val compilerArgs = options.compilerArgs
|
|
|
|
compilerArgs.add("-Xlint:unchecked")
|
|
|
|
compilerArgs.add("-Xlint:deprecation")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register("clean", Delete::class) {
|
2023-11-23 10:00:19 +01:00
|
|
|
delete(rootProject.layout.buildDirectory)
|
2021-11-21 21:10:47 +01:00
|
|
|
}
|