lint: ignore UnusedAttribute

This commit is contained in:
Daniel Martí 2015-11-01 20:09:31 +01:00
parent 81db276f8d
commit ca9e390e60

View File

@ -161,9 +161,13 @@ 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 // We have locale folders like "values-he" and "values-id" as symlinks
// since some devices ship deprecated locale codes // since some devices ship deprecated locale codes
disable 'LocaleFolder' disable 'LocaleFolder'
// Like supportsRtl or parentActivityName. They are on purpose.
disable 'UnusedAttribute'
} }
packagingOptions { packagingOptions {