2023-04-19 22:03:35 +02:00
|
|
|
plugins {
|
2024-01-09 21:58:14 +01:00
|
|
|
id("com.android.application") version "8.2.1" apply false
|
2023-12-25 17:30:36 +01:00
|
|
|
id("org.jetbrains.kotlin.android") version "1.9.22" 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
|
|
|
}
|