From bab8e95e212b639dd56dc8a7c291cb673d1f6a2e Mon Sep 17 00:00:00 2001 From: Roman Tsisyk Date: Thu, 13 Oct 2022 09:15:14 +0300 Subject: [PATCH] [android] Supress lint warnings we can't fix now Signed-off-by: Roman Tsisyk --- android/build.gradle | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index d3647888e9..8792bf0889 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -289,9 +289,15 @@ android { lint { disable 'MissingTranslation' // https://github.com/organicmaps/organicmaps/issues/3551 - disable 'MissingQuantity' + disable 'MissingQuantity', 'UnusedQuantity' // https://github.com/organicmaps/organicmaps/issues/3550 disable 'ByteOrderMark' + // https://github.com/organicmaps/organicmaps/issues/1077 + disable 'CustomSplashScreen' + // https://github.com/organicmaps/organicmaps/issues/3610 + disable 'InsecureBaseConfiguration' + // https://github.com/organicmaps/organicmaps/issues/3608 + disable 'UnusedResources' abortOnError true }