eac1c6f1d8
Filling passwords is usually only offered for fields with a password input type, which ensures that they are always properly masked. Certain custom views (e.g., the Termux terminal view), may apply their own masking that is not based on the standard views. With this commit, we allow filling passwords into arbitrary fields as long as they have an Autofill hint that indicates a password. |
||
---|---|---|
.. | ||
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'
}