aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain
diff options
context:
space:
mode:
Diffstat (limited to 'OpenKeychain')
-rw-r--r--OpenKeychain/build.gradle13
1 files changed, 12 insertions, 1 deletions
diff --git a/OpenKeychain/build.gradle b/OpenKeychain/build.gradle
index 32ce30ea2..393a18d08 100644
--- a/OpenKeychain/build.gradle
+++ b/OpenKeychain/build.gradle
@@ -80,9 +80,12 @@ android {
buildTypes.release.signingConfig = null
}
- // Do not abort build if lint finds errors
+ // NOTE: Lint is disabled because it slows down builds,
+ // to enable it comment out the code at the bottom of this build.gradle
lintOptions {
+ // Do not abort build if lint finds errors
abortOnError false
+
checkAllWarnings true
htmlReport true
htmlOutput file("lint-report.html")
@@ -103,4 +106,12 @@ task localTest(type: Test, dependsOn: assemble) {
classpath = sourceSets.testLocal.runtimeClasspath
}
+// NOTE: This disables Lint!
+tasks.whenTaskAdded { task ->
+ if (task.name.equals("lint")) {
+ task.enabled = false
+ }
+}
+
+// NOTE: tests disabled!
//check.dependsOn localTest