Android-Password-Store/autofill-parser
github-actions[bot] fce73e6544
autofill-parser: update publicsuffixes file (#1220)
Co-authored-by: GitHub Actions <noreply@github.com>
(cherry picked from commit 0b9d3dc5c2)
2021-03-20 22:42:38 +05:30
..
api Make autofill-parser API explicit and refactor (#1182) 2021-03-20 22:26:19 +05:30
src/main autofill-parser: update publicsuffixes file (#1220) 2021-03-20 22:42:38 +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
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'
}