diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-04-01 05:52:43 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-01 05:52:43 +0530 |
commit | 4c8c0f44c8d33673fd7421dd638dc9d60b470181 (patch) | |
tree | 99c2e7fd56efb462872371d214b21597e2385f3c /autofill-parser/src/main | |
parent | 62b514cae430a0fdcb45f8b0bba3c03d08cfcb58 (diff) |
Update all dependencies (#1358)
* build: update all dependencies
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
* autofill-parser: add new hints
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
* build: force the right annotation version manually
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Co-authored-by: Fabian Meumertzheim <fabian@meumertzhe.im>
Diffstat (limited to 'autofill-parser/src/main')
-rw-r--r-- | autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FormField.kt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FormField.kt b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FormField.kt index d3ce8408..562e5d86 100644 --- a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FormField.kt +++ b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FormField.kt @@ -49,11 +49,13 @@ internal class FormField( HINTS_NEW_PASSWORD + listOf( HintConstants.AUTOFILL_HINT_PASSWORD, + HintConstants.AUTOFILL_HINT_WIFI_PASSWORD, ) private val HINTS_OTP = listOf( HintConstants.AUTOFILL_HINT_SMS_OTP, + HintConstants.AUTOFILL_HINT_TFA_APP_OTP, ) @Suppress("DEPRECATION") |