Android-Password-Store/autofill-parser
Harsh Shandilya 9c91cdc34c
autofill-parser: drop use of core-ktx
We use an alpha version of core-ktx that might be undesirable for projects including the library

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2020-09-20 21:47:22 +05:30
..
src/main autofill-parser: drop use of core-ktx 2020-09-20 21:47:22 +05:30
.gitignore Autofill: Extract AutofillParser into separate subproject (#1101) 2020-09-16 23:47:55 +05:30
build.gradle.kts autofill-parser: drop use of core-ktx 2020-09-20 21:47:22 +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'
}