From e0560f8c7ea50627cd2410a57cb24c710bca0a47 Mon Sep 17 00:00:00 2001 From: Thomas Mijieux Date: Thu, 19 Sep 2024 17:52:59 +0200 Subject: [PATCH 1/2] Update package name in README.md --- plugin-annotation/README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/plugin-annotation/README.md b/plugin-annotation/README.md index 62242df6..e29ff6a5 100644 --- a/plugin-annotation/README.md +++ b/plugin-annotation/README.md @@ -21,7 +21,13 @@ In the app-level `build.gradle` file: ```groovy dependencies { - implementation 'com.maplibre.maplibresdk:maplibre-android-plugin-annotation-v9:0.9.0' + implementation 'org.maplibre.gl:maplibre-android-plugin-annotation-v9:3.0.1' +} +``` + +```kotlin +dependencies { + implementation("org.maplibre.gl:maplibre-android-plugin-annotation-v9:3.0.1") } ``` From d6e29002475b17942d004c1ffcade0d0c79f7347 Mon Sep 17 00:00:00 2001 From: Thomas Mijieux Date: Thu, 19 Sep 2024 18:03:30 +0200 Subject: [PATCH 2/2] fix package name --- plugin-annotation/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin-annotation/README.md b/plugin-annotation/README.md index e29ff6a5..7d2df6f1 100644 --- a/plugin-annotation/README.md +++ b/plugin-annotation/README.md @@ -21,13 +21,13 @@ In the app-level `build.gradle` file: ```groovy dependencies { - implementation 'org.maplibre.gl:maplibre-android-plugin-annotation-v9:3.0.1' + implementation 'org.maplibre.gl:android-plugin-annotation-v9:3.0.1' } ``` ```kotlin dependencies { - implementation("org.maplibre.gl:maplibre-android-plugin-annotation-v9:3.0.1") + implementation("org.maplibre.gl:android-plugin-annotation-v9:3.0.1") } ```