diff --git a/F-Droid/build.gradle b/F-Droid/build.gradle index 975af5411..10840f4f0 100644 --- a/F-Droid/build.gradle +++ b/F-Droid/build.gradle @@ -47,17 +47,17 @@ android { compileOptions.encoding = "UTF-8" - lintOptions { - abortOnError false - } - - // Enable all java warnings + // Enable all Android lint warnings gradle.projectsEvaluated { tasks.withType(JavaCompile) { options.compilerArgs << "-Xlint:all" } } + lintOptions { + abortOnError false + } + } // TODO: This person took the example code below from another blogpost online, however