Browse Source

Fix maplibre annotation plugins dependency

main v0.5.1
ganfra 3 weeks ago
parent
commit
4ecc9f46b6
  1. 1
      gradle/libs.versions.toml
  2. 2
      libraries/maplibre-compose/build.gradle.kts

1
gradle/libs.versions.toml

@ -180,6 +180,7 @@ statemachine = "com.freeletics.flowredux:compose:1.2.2" @@ -180,6 +180,7 @@ statemachine = "com.freeletics.flowredux:compose:1.2.2"
maplibre = "org.maplibre.gl:android-sdk:11.2.0"
maplibre_ktx = "org.maplibre.gl:android-sdk-ktx-v7:3.0.0"
maplibre_annotation = "org.maplibre.gl:android-plugin-annotation-v9:3.0.0"
mapbox_android_gestures = "com.mapbox.mapboxsdk:mapbox-android-gestures:0.7.0"
opusencoder = "io.element.android:opusencoder:1.1.0"
kotlinpoet = "com.squareup:kotlinpoet:1.18.1"
zxing_cpp = "io.github.zxing-cpp:android:2.2.0"

2
libraries/maplibre-compose/build.gradle.kts

@ -31,4 +31,6 @@ dependencies { @@ -31,4 +31,6 @@ dependencies {
api(libs.maplibre)
api(libs.maplibre.ktx)
api(libs.maplibre.annotation)
// needed for libs.maplibre.annotation waiting for a new release with the fix
implementation(libs.mapbox.android.gestures)
}

Loading…
Cancel
Save