summaryrefslogtreecommitdiff
path: root/autofill-parser/README.md
blob: 23b29fdf7d5e48d04c110e56dcbfec7f645553b6 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# autofill-parser

Android library to enable efficient usage of the Autofill capabilities introduced in Android 8.0.

# Usage

<details><summary>Gradle Kotlin DSL</summary>

```kotlin
repositories {
  maven {
    setUrl("https://maven.msfjarvis.dev/android-password-store/autofill-parser")
  }
}

dependencies {
  implementation("com.github.androidpasswordstore:autofill-parser:1.0.0")
}
```

</details>

<details><summary>Groovy DSL</summary>

```gradle
repositories {
  maven {
    url 'https://maven.msfjarvis.dev/android-password-store/autofill-parser'
  }
}

dependencies {
  implementation 'com.github.androidpasswordstore:autofill-parser:1.0.0'
}
```

</details>