diff options
author | Felix Bechstein <f@ub0r.de> | 2017-08-02 11:15:31 +0200 |
---|---|---|
committer | Mohamed Zenadi <zeapo@users.noreply.github.com> | 2017-08-02 10:15:31 +0100 |
commit | e169235d961d93105f210d0c3c4dc29a21008c68 (patch) | |
tree | 1f684e80351d7b47662675485faef295ec6a281b /app/build.gradle | |
parent | 37329a67f7f1fb009daeffa4844245be6f370ae0 (diff) |
Fix more lint (#325)
* fix/ignore lint errors, run lint on travis
* fix/ignore some lint warnings
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle index 0662df97..83d32e8b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -15,9 +15,9 @@ android { sourceCompatibility JavaVersion.VERSION_1_7 targetCompatibility JavaVersion.VERSION_1_7 } - // avoid Travis failures lintOptions { - abortOnError false + abortOnError true // make sure build failes with lint errors! + disable 'MissingTranslation', 'PluralsCandidate' } packagingOptions { exclude '.readme' |