From 384159d2a52202bc37b49ba64f0b46af03740125 Mon Sep 17 00:00:00 2001 From: tunmx Date: Tue, 7 Mar 2023 18:27:31 +0800 Subject: [PATCH] Update Android Demo --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index f8b91d2..3e43543 100644 --- a/README.md +++ b/README.md @@ -244,20 +244,20 @@ If you need to quickly integrate our sdk in your own Android project, then you c - Step 1. Add the JitPack repository to your build file.Add it in your root build.gradle at the end of repositories: -```bash +```java allprojects { - repositories { - ... - maven { url 'https://jitpack.io' } - } - } + repositories { + ... + maven { url 'https://jitpack.io' } + } +} ``` - Step 2. Add the dependency -```bash +```java dependencies { - implementation 'com.github.HyperInspire:hyperlpr3-android-sdk:1.0.2' - } + implementation 'com.github.HyperInspire:hyperlpr3-android-sdk:1.0.2' +} ``` - Step 3. Use hyperlpr in your application