2023-04-19 22:03:35 +02:00
|
|
|
plugins {
|
2023-08-26 00:30:27 +02:00
|
|
|
id("com.android.application") version "8.1.1" apply false
|
2023-08-24 01:16:55 +02:00
|
|
|
id("org.jetbrains.kotlin.android") version "1.9.10" 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) {
|
|
|
|
delete(rootProject.buildDir)
|
|
|
|
}
|