mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2026-02-22 18:31:50 +01:00
|
|
||
|---|---|---|
| .. | ||
| api | ||
| src/main | ||
| .gitignore | ||
| build.gradle.kts | ||
| consumer-rules.pro | ||
| gradle.properties | ||
| 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'
}