Android-Password-Store/autofill-parser/README.md
Harsh Shandilya 9ccefe87e8
autofill-parser: add README
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2020-09-20 17:12:03 +05:30

670 B

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'
}