From 1e553ebd8adc9bfdd198b1d2fc2d73c32dc8fde2 Mon Sep 17 00:00:00 2001 From: Tak! Date: Thu, 7 Sep 2023 10:40:23 +0200 Subject: [PATCH] Remove newLintBaseline task since we only want errors in the baseline --- app/build.gradle | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 3c0702d3e..f75642526 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -202,18 +202,3 @@ tasks.withType(org.jetbrains.kotlin.gradle.internal.KaptWithoutKotlincTask) { "--add-opens", "jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED", "--add-opens", "jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED"]) } - -tasks.register("newLintBaseline") { - description 'Deletes and then recreates the lint baseline' - - // This task should always run, irrespective of caching - notCompatibleWithConfigurationCache("Is always out of date") - outputs.upToDateWhen { false } - - doLast { - delete android.lint.baseline.path - } - - // Regenerate the lint baseline - it.finalizedBy tasks.named("lintBlueDebug") -}