Android-Password-Store/autofill-parser
github-actions[bot] 2494a15989
autofill-parser: update publicsuffixes file (#1178)
Co-authored-by: GitHub Actions <noreply@github.com>
(cherry picked from commit 07b8505fe0)
2021-03-20 22:17:56 +05:30
..
api Mark Chrome Canary as non-flaky and allowing save (#1237) 2020-12-21 20:28:13 +05:30
src/main autofill-parser: update publicsuffixes file (#1178) 2021-03-20 22:17:56 +05:30
.gitignore
build.gradle.kts Revamp build configuration (#1156) 2020-10-16 17:18:11 +02:00
consumer-rules.pro
gradle.properties Mark Chrome Canary as non-flaky and allowing save (#1237) 2020-12-21 20:28:13 +05:30
proguard-rules.pro
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'
}