Android-Password-Store/autofill-parser
Fabian Meumertzheim de1b976638
Mark unfocused single password fields as fillable (#1258)
Unfocused single password fields in forms with no other recognized
fields must be marked as fillable or the Autofill service will no
longer be invoked on that form.

This is compatible with the restrictions of single-origin mode as
filling only takes place after the password field has gained focus and
the user has tapped the fill UI.

For an example website where fill UI is not shown without this commit,
open https://amazon.lbb.de and tab the user name field ("Benutzername")
first before focusing the password field.

(cherry picked from commit c15594b045)
2021-03-20 22:42:39 +05:30
..
api Make autofill-parser API explicit and refactor (#1182) 2021-03-20 22:26:19 +05:30
src/main Mark unfocused single password fields as fillable (#1258) 2021-03-20 22:42:39 +05:30
.gitignore
build.gradle.kts Make autofill-parser API explicit and refactor (#1182) 2021-03-20 22:26:19 +05:30
consumer-rules.pro
gradle.properties Mark Chrome Canary as non-flaky and allowing save (#1237) 2020-12-21 20:28:13 +05:30
proguard-rules.pro
README.md autofill-parser: add README 2020-09-20 17:12:03 +05:30

autofill-parser

Android library to enable efficient usage of the Autofill capabilities introduced in Android 8.0.

Usage

Gradle Kotlin DSL
repositories {
  maven {
    setUrl("https://maven.msfjarvis.dev/android-password-store/autofill-parser")
  }
}

dependencies {
  implementation("com.github.androidpasswordstore:autofill-parser:1.0.0")
}
Groovy DSL
repositories {
  maven {
    url 'https://maven.msfjarvis.dev/android-password-store/autofill-parser'
  }
}

dependencies {
  implementation 'com.github.androidpasswordstore:autofill-parser:1.0.0'
}