lint: don't unnecessarily disable warnings

Those that are sometimes false positives but could still point out valid
issues should be warnings, not disabled entirely.

The first two are warnings already, the third is an error.
This commit is contained in:
Daniel Martí 2016-06-21 13:26:56 +01:00
parent ae2def3e0d
commit 26f5286f97

View File

@ -194,15 +194,8 @@ android {
// Our translations are crowd-sourced // Our translations are crowd-sourced
disable 'MissingTranslation' disable 'MissingTranslation'
// We have locale folders like "values-he" and "values-id" as symlinks
// since some devices ship deprecated locale codes
disable 'LocaleFolder'
// Like supportsRtl or parentActivityName. They are on purpose.
disable 'UnusedAttribute'
// to make CI fail on errors until this is fixed https://github.com/rtyley/spongycastle/issues/7 // to make CI fail on errors until this is fixed https://github.com/rtyley/spongycastle/issues/7
disable 'InvalidPackage' warning 'InvalidPackage'
} }
packagingOptions { packagingOptions {