From 9ccefe87e8d3782bb494977ddf282781cfb302e1 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Sun, 20 Sep 2020 17:09:57 +0530 Subject: autofill-parser: add README Signed-off-by: Harsh Shandilya --- autofill-parser/README.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 autofill-parser/README.md (limited to 'autofill-parser/README.md') 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 + +
Gradle Kotlin DSL + +```kotlin +repositories { + maven { + setUrl("https://maven.msfjarvis.dev/android-password-store/autofill-parser") + } +} + +dependencies { + implementation("com.github.androidpasswordstore:autofill-parser:1.0.0") +} +``` + +
+ +
Groovy DSL + +```gradle +repositories { + maven { + url 'https://maven.msfjarvis.dev/android-password-store/autofill-parser' + } +} + +dependencies { + implementation 'com.github.androidpasswordstore:autofill-parser:1.0.0' +} +``` + +
-- cgit v1.2.3