Files
me.hackerchick.catima/build.gradle.kts
T
2023-10-08 11:17:52 +05:30

13 lines
345 B
Kotlin

// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.1.2" apply false
id("com.github.spotbugs") version "5.1.3" apply false
}
allprojects {
tasks.withType<JavaCompile> {
options.compilerArgs.add("-Xlint:deprecation")
}
}