Files
Android/build.gradle
2022-10-05 00:20:31 +05:30

17 lines
403 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.0.4' apply false
id 'com.github.spotbugs' version "4.7.5" apply false
}
allprojects {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:deprecation"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}