diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2020-09-20 17:09:57 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2020-09-20 17:12:03 +0530 |
commit | 9ccefe87e8d3782bb494977ddf282781cfb302e1 (patch) | |
tree | 7a665a4546855c57c7975da5343cf60fc87864ef /autofill-parser | |
parent | e8bc41f1aa6a2ec61976b3e75124c66c509ba9c7 (diff) |
autofill-parser: add README
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'autofill-parser')
-rw-r--r-- | autofill-parser/README.md | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/autofill-parser/README.md b/autofill-parser/README.md new file mode 100644 index 00000000..23b29fdf --- /dev/null +++ b/autofill-parser/README.md @@ -0,0 +1,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> |