2023-04-19 22:03:35 +02:00
|
|
|
plugins {
|
2023-05-02 08:48:26 +02:00
|
|
|
id("com.android.application") version "8.0.1" apply false
|
2023-07-04 01:09:20 +02:00
|
|
|
id("org.jetbrains.kotlin.android") version "1.8.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) {
|
|
|
|
delete(rootProject.buildDir)
|
|
|
|
}
|