diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-04-24 16:31:37 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2022-04-24 16:47:51 +0530 |
commit | 901845e74519cf0278fda8aba72a4f3399aefc8c (patch) | |
tree | 76cf38d7794760a79dbc703a5d57766292efae0d /app | |
parent | 975c9f5dfc29d9a2a32e26642909abd90d35243b (diff) |
app: address Autofill lint
Diffstat (limited to 'app')
-rw-r--r-- | app/lint-baseline.xml | 11 | ||||
-rw-r--r-- | app/src/main/res/layout/fragment_pwgen.xml | 1 |
2 files changed, 1 insertions, 11 deletions
diff --git a/app/lint-baseline.xml b/app/lint-baseline.xml index ca7bd965..bbaf877f 100644 --- a/app/lint-baseline.xml +++ b/app/lint-baseline.xml @@ -2,17 +2,6 @@ <issues format="6" by="lint 7.1.3" type="baseline" client="gradle" dependencies="false" name="AGP (7.1.3)" variant="all" version="7.1.3"> <issue - id="Autofill" - message="Missing `autofillHints` attribute" - errorLine1=" <EditText" - errorLine2=" ~~~~~~~~"> - <location - file="src/main/res/layout/fragment_pwgen.xml" - line="90" - column="10"/> - </issue> - - <issue id="ContentDescription" message="Missing `contentDescription` attribute on image" errorLine1=" <ImageView" diff --git a/app/src/main/res/layout/fragment_pwgen.xml b/app/src/main/res/layout/fragment_pwgen.xml index 592ef1f2..e8cb68cb 100644 --- a/app/src/main/res/layout/fragment_pwgen.xml +++ b/app/src/main/res/layout/fragment_pwgen.xml @@ -92,6 +92,7 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="8dp" + android:autofillHints="notApplicable" android:ems="10" android:inputType="number" /> |