From 0a539c3a04a3f2e10a395776043888fd83b1d151 Mon Sep 17 00:00:00 2001 From: Sebastian Kaspari Date: Mon, 23 Mar 2015 22:03:24 +0100 Subject: [PATCH] Disable aborting builds on lint warnings. Unfortunately a warning inside of appcompat prevents us from enabling this option. --- app/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index 920c346..039c166 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -17,6 +17,11 @@ android { proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } + + lintOptions { + // A warning inside of appcompat prevents us from enabling this option + abortOnError false + } } dependencies {