mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2026-04-24 17:00:13 +02:00
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
|
||
|---|---|---|
| .. | ||
| api | ||
| src/main | ||
| .gitignore | ||
| build.gradle.kts | ||
| consumer-rules.pro | ||
| gradle.properties | ||
| proguard-rules.pro | ||
| README.md | ||
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'
}