libpdfviewer/build.gradle.kts

17 lines
383 B
Plaintext
Raw Permalink Normal View History

plugins {
2023-09-08 19:47:30 +02:00
id("com.android.application") apply false
id("org.jetbrains.kotlin.android") 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)
}