Disable aborting builds on lint warnings.

Unfortunately a warning inside of appcompat prevents us from enabling this option.
This commit is contained in:
Sebastian Kaspari 2015-03-23 22:03:24 +01:00
parent 396d6cec0a
commit 0a539c3a04
1 changed files with 5 additions and 0 deletions

View File

@ -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 {