Android-Password-Store/autofill-parser
Fabian Henneke eac1c6f1d8
Allow matching password fields based on hints only (#1129)
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.
2020-10-02 15:49:20 +05:30
..
api autofill-parser: check in API dump 2020-10-01 14:09:07 +05:30
src/main Allow matching password fields based on hints only (#1129) 2020-10-02 15:49:20 +05:30
.gitignore Autofill: Extract AutofillParser into separate subproject (#1101) 2020-09-16 23:47:55 +05:30
build.gradle.kts autofill-parser: add dependency on AndroidX annotation 2020-09-20 21:48:10 +05:30
consumer-rules.pro Autofill: Extract AutofillParser into separate subproject (#1101) 2020-09-16 23:47:55 +05:30
gradle.properties autofill-parser: configure maven-publish plugin 2020-09-20 17:12:03 +05:30
proguard-rules.pro Autofill: Extract AutofillParser into separate subproject (#1101) 2020-09-16 23:47:55 +05:30
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'
}