From fa21ffd7ff980ee32ab3bad0fcbdc3c4a7cb75cd Mon Sep 17 00:00:00 2001 From: johan12345 Date: Sat, 23 May 2026 00:41:46 +0200 Subject: [PATCH] upgrade AnyMaps, MapLibre uses OpenGL ES 3.0 now #345 --- app/build.gradle.kts | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 1cb8ddf6..a194ff34 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -340,17 +340,15 @@ dependencies { automotiveImplementation("androidx.car.app:app-automotive:$carAppVersion") // AnyMaps - val anyMapsVersion = "65e06c4c9a" + val anyMapsVersion = "e087fcdf86" implementation("com.github.ev-map.AnyMaps:anymaps-base:$anyMapsVersion") googleImplementation("com.github.ev-map.AnyMaps:anymaps-google:$anyMapsVersion") googleImplementation("com.google.android.gms:play-services-maps:19.2.0") implementation("com.github.ev-map.AnyMaps:anymaps-maplibre:$anyMapsVersion") { - // duplicates classes from mapbox-sdk-services - exclude("org.maplibre.gl", "android-sdk-geojson") - } - implementation("org.maplibre.gl:android-sdk:10.3.5") { - exclude("org.maplibre.gl", "android-sdk-geojson") + // exclude Vulkan version and use OpenGL ES 3.0 version for now for better compatibility + exclude("org.maplibre.gl", "android-sdk") } + implementation("org.maplibre.gl:android-sdk-opengl:13.1.0") // Google Places googleImplementation("com.google.android.libraries.places:places:3.5.0")