From abfcf9d6cdb3dd4703a026ddc9cc6a4a615ea69b Mon Sep 17 00:00:00 2001 From: Branden Archer Date: Sat, 10 Feb 2018 13:43:28 -0500 Subject: [PATCH] Disable MissingPrefix lint The autosizing TextView, which comes from the support-v4 library, adds several new attributes to TextViews. These attributes do not seem to be in the app namespace (as described in the documentation), as Android Studio and lint complains. However, funtionally the new attributes work as expected. --- app/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/app/build.gradle b/app/build.gradle index 40a877a85..7f018e870 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -27,6 +27,7 @@ android { disable "ButtonStyle" disable "AlwaysShowAction" disable "MissingTranslation" + disable "MissingPrefix" } // Starting with Android Studio 3 Robolectric is unable to find resources.