From 3d13ef646a40947b30ace272399ac80efd7c05fe Mon Sep 17 00:00:00 2001 From: Mike Audi Date: Tue, 10 Oct 2023 14:57:14 -0500 Subject: [PATCH] fix: update doc to help with MB confusion --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 089b673..280f9b4 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,12 @@ Next, if you don't already have a `publishingId` from TIKI, **create a free acco Microblink is closed source, and subsequently it's AARs are hosted by Microblink's Maven repository, not Maven Central. You need to add the maven endpoint to your `android/build.gradle` file in your project's android folder. ```groovy -maven { url "https://maven.microblink.com" } +allprojects { + repositories { + // other repositories + maven { url "https://maven.microblink.com" } + } +} ``` Depending on your project's configuration you may also need to add the following `packagingOptions` to your `android/app/build.gradle` file.