Android-Password-Store/autofill-parser
Harsh Shandilya 0d6b7f1842
autofill-parser: flesh out generated POM file (#1140)
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2020-10-08 12:36:11 +05:30
..
api autofill-parser: check in API dump 2020-10-01 14:09:07 +05:30
src/main Resolve lock contention from lazy delegates (#1135) 2020-10-05 08:29:44 +05:30
.gitignore
build.gradle.kts autofill-parser: flesh out generated POM file (#1140) 2020-10-08 12:36:11 +05:30
consumer-rules.pro
gradle.properties autofill-parser: flesh out generated POM file (#1140) 2020-10-08 12:36:11 +05:30
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'
}