From 333c906a3621d6415c88b0faa9daeca06a2f033b Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Sun, 3 May 2020 02:49:12 +0300 Subject: [PATCH] gradle: disable another lint warning that I don't want to fix --- app/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/app/build.gradle b/app/build.gradle index 092d50bd..8853c836 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -69,6 +69,7 @@ android { disable 'MissingTranslation' disable 'ExtraTranslation' disable 'AppCompatCustomView' // I don't care about AppCompat bloat + disable 'UseRequireInsteadOfGet' } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8