Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit 9ccefe8

Browse files
committed
autofill-parser: add README
Signed-off-by: Harsh Shandilya <[email protected]>
1 parent e8bc41f commit 9ccefe8

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

autofill-parser/README.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# autofill-parser
2+
3+
Android library to enable efficient usage of the Autofill capabilities introduced in Android 8.0.
4+
5+
# Usage
6+
7+
<details><summary>Gradle Kotlin DSL</summary>
8+
9+
```kotlin
10+
repositories {
11+
maven {
12+
setUrl("https://maven.msfjarvis.dev/android-password-store/autofill-parser")
13+
}
14+
}
15+
16+
dependencies {
17+
implementation("com.github.androidpasswordstore:autofill-parser:1.0.0")
18+
}
19+
```
20+
21+
</details>
22+
23+
<details><summary>Groovy DSL</summary>
24+
25+
```gradle
26+
repositories {
27+
maven {
28+
url 'https://maven.msfjarvis.dev/android-password-store/autofill-parser'
29+
}
30+
}
31+
32+
dependencies {
33+
implementation 'com.github.androidpasswordstore:autofill-parser:1.0.0'
34+
}
35+
```
36+
37+
</details>

0 commit comments

Comments
 (0)