From 4c75f6078d5518912436dbf46825285bf1aae8aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Thu, 20 Aug 2015 18:05:34 -0700 Subject: [PATCH] Disable lint warnings in command-line builds There are just too many now, and they hide actual compilation errors. They can still be viewed in the HTML report. --- F-Droid/build.gradle | 7 ------- 1 file changed, 7 deletions(-) diff --git a/F-Droid/build.gradle b/F-Droid/build.gradle index ad8b1f23f..f5aba75e7 100644 --- a/F-Droid/build.gradle +++ b/F-Droid/build.gradle @@ -172,13 +172,6 @@ android { disable 'MissingTranslation' } - // Enable all Android lint warnings - gradle.projectsEvaluated { - tasks.withType(JavaCompile) { - options.compilerArgs << "-Xlint:all" - } - } - } // This person took the example code below from another blogpost online, however