Android-Password-Store/autofill-parser
github-actions[bot] f17bd78398
Update Public Suffix List data (#1214)
Co-authored-by: GitHub Actions <noreply@github.com>
2020-11-21 10:22:29 +05:30
..
api Make autofill-parser API explicit and refactor (#1182) 2020-11-03 13:36:17 +05:30
src/main Update Public Suffix List data (#1214) 2020-11-21 10:22:29 +05:30
.gitignore Autofill: Extract AutofillParser into separate subproject (#1101) 2020-09-16 23:47:55 +05:30
build.gradle.kts Make autofill-parser API explicit and refactor (#1182) 2020-11-03 13:36:17 +05:30
consumer-rules.pro Autofill: Extract AutofillParser into separate subproject (#1101) 2020-09-16 23:47:55 +05:30
gradle.properties autofill-parser: flesh out generated POM file (#1140) 2020-10-08 12:36:11 +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'
}