Android-Password-Store/autofill-parser
Harsh Shandilya 96787311a0
autofill-parser: add DuckDuckGo's F-Droid signature
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2020-10-23 11:00:21 +05:30
..
api autofill-parser: check in API dump 2020-10-01 14:09:07 +05:30
src/main autofill-parser: add DuckDuckGo's F-Droid signature 2020-10-23 11:00:21 +05:30
.gitignore Autofill: Extract AutofillParser into separate subproject (#1101) 2020-09-16 23:47:55 +05:30
build.gradle.kts Revamp build configuration (#1156) 2020-10-16 17:18:11 +02:00
consumer-rules.pro Autofill: Extract AutofillParser into separate subproject (#1101) 2020-09-16 23:47:55 +05:30
gradle.properties autofill-parser: flesh out generated POM file (#1140) 2020-10-08 12:36:11 +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'
}