Skip to content

Releases: mapbox/mapbox-maps-android

v11.15.3

14 Oct 14:25
Compare
Choose a tag to compare

Dependencies

v11.14.8

14 Oct 14:24
Compare
Choose a tag to compare

Dependencies

v10.19.1

08 Oct 13:19
Compare
Choose a tag to compare

10.19.1 October 08, 2025

Bug fixes 🐞

  • Fixed map clicks being blocked by annotation managers with no click listeners

v11.16.0-rc.1

08 Oct 09:00
Compare
Choose a tag to compare
v11.16.0-rc.1 Pre-release
Pre-release

16 KB Page Size Support: Starting with version 11.7.0 and 10.19.0, NDK 27 is supported with dedicated artifacts that include support for 16 KB page sizes. If your app does not require 16 KB page size support, you can keep using our default artifacts without -ndk27 suffix. For more information about our NDK support, see https://docs.mapbox.com/android/maps/guides/#ndk-support

Features ✨ and improvements 🏁

  • Mark tile import APIs as experimental.

Bug fixes 🐞

  • Fix var expressions that did not work properly with config expressions.
  • Fix cutout disappearing at certain zoom and pitch levels with orthographic camera.
  • Fix potential crashes when updating style layer properties.

Dependencies

v11.15.2

02 Oct 17:49
Compare
Choose a tag to compare

16 KB Page Size Support: Starting with version 11.7.0 and 10.19.0, NDK 27 is supported with dedicated artifacts that include support for 16 KB page sizes. If your app does not require 16 KB page size support, you can keep using our default artifacts without -ndk27 suffix. For more information about our NDK support, see https://docs.mapbox.com/android/maps/guides/#ndk-support

Features ✨ and improvements 🏁

  • Reduce number of allocations for network requests.

Dependencies

v11.14.7

30 Sep 06:02
Compare
Choose a tag to compare

16 KB Page Size Support: Starting with version 11.7.0 and 10.19.0, NDK 27 is supported with dedicated artifacts that include support for 16 KB page sizes. If your app does not require 16 KB page size support, you can keep using our default artifacts without -ndk27 suffix. For more information about our NDK support, see https://docs.mapbox.com/android/maps/guides/#ndk-support

Dependencies

v11.15.1

26 Sep 13:42
Compare
Choose a tag to compare

16 KB Page Size Support: Starting with version 11.7.0 and 10.19.0, NDK 27 is supported with dedicated artifacts that include support for 16 KB page sizes. If your app does not require 16 KB page size support, you can keep using our default artifacts without -ndk27 suffix. For more information about our NDK support, see https://docs.mapbox.com/android/maps/guides/#ndk-support

Features ✨ and improvements 🏁

  • Rewrite OpenGL Buffer Management for Performance

Dependencies

v11.16.0-beta.1

23 Sep 13:51
Compare
Choose a tag to compare
v11.16.0-beta.1 Pre-release
Pre-release

16 KB Page Size Support: Starting with version 11.7.0 and 10.19.0, NDK 27 is supported with dedicated artifacts that include support for 16 KB page sizes. If your app does not require 16 KB page size support, you can keep using our default artifacts without -ndk27 suffix. For more information about our NDK support, see https://docs.mapbox.com/android/maps/guides/#ndk-support

Features ✨ and improvements 🏁

  • Update target and compile SDK version to 35
  • Added support for LandmarkIcons featureset in Mapbox Standard Style. Query and interact with landmark building icons that appear on the map, accessing properties including landmark ID, name, type, and localized names through the StandardLandmarkIconsFeature class.
  • Enhanced MapboxStandardStyle() and MapboxStandardSatelliteStyle() Compose functions with comprehensive configuration options:
    • Color customization: Set custom colors for roads, motorways, water, greenspaces, administrative boundaries, and more
    • Landmark icons: Control visibility of landmark building icons and labels (showLandmarkIcons, showLandmarkIconLabels)
    • Point-of-interest styling: Configure POI label backgrounds, colors, and density
    • Road appearance: Adjust road brightness, show/hide pedestrian roads and transit networks
    • Administrative boundaries: Toggle boundary visibility and customize colors
    • 3D objects: Control visibility of buildings, landmarks, and trees with show3dObjects
  • Expose LineLayer.lineCutoutFadeWidth to control route line cutout fade width.
  • com.mapbox.maps.MapboxTracing was deprecated and moved to package com.mapbox.common.MapboxTracing.

Bug fixes 🐞

  • Fix incorrect color rendering for gradients and interpolations with zero alpha channel.
  • Fix incorrect positioning of map marker annotations, when coordinates do not change.
  • Fix incorrect display height for zooming gesture on secondary displays.
  • Fix some feature state-related bugs.
  • Fix precision issue in hillshade causing terrain with steps.
  • Fix incorrect Asset File Source initialization.

Dependencies

v11.14.6

19 Sep 11:08
Compare
Choose a tag to compare

Dependencies

v11.15.0

17 Sep 10:46
Compare
Choose a tag to compare

16 KB Page Size Support: Starting with version 11.7.0 and 10.19.0, NDK 27 is supported with dedicated artifacts that include support for 16 KB page sizes. If your app does not require 16 KB page size support, you can keep using our default artifacts without -ndk27 suffix. For more information about our NDK support, see https://docs.mapbox.com/android/maps/guides/#ndk-support

Features ✨ and improvements 🏁

  • Expose LineLayer.lineCutoutOpacity and LineLayer.lineCutoutWidth to make route lines visible through obstructing 3D buildings and other aboveground features.
  • Expose experimental MapboxMap.setStyleLayerPropertiesAsync and MapboxMap.setStyleLayerPropertyAsync (also available through Style) to allow setting properties from a any thread and asynchronously.
  • Improve performance of the zooming-out animation

Bug fixes 🐞

  • Fix flyTo animation when zoom property is null or not changed
  • Fix MapInteraction for 2D and 3D location puck indicator
  • Fix ViewAnnotation disappears when interacting with location puck at different camera positions due to incorrect 2D puck bounding box calculation
  • Fix a bug where Dynamic View Annotations disappeared in corner cases
  • Fix bug where View Annotation is not displayed at zoom levels > 22
  • Fix potential crash caused by a race condition
  • Fix the alignment of the text and icon when using the text-anchor property.
  • Fix incorrect background color of icons when non-default color-theme is used
  • Fix tile border debug feature flickering on globe projection
  • Fix potential ANR (Application Not Responding) issue when retrieving display refresh rate during map initialization by offloading the system call to a background thread with proper timeout and fallback handling.
  • Fix frames skipped when calling mapView.setMaximumFps(..) multiple times.
  • Allow to create text-field without any text
  • Fix potential data race in mapbox token initialization
  • Fix cronet request cancel due to connect timeout & reduce objects created.

Dependencies

  • Update gl-native to v11.15.0, common to 24.15.0.
  • Update Mapbox GeoJSON library to v7.5.0 which bumps GSON to v2.13.1 to address CVE-2025-53864. If your project uses AGP 7.0, you might need to add the following snippet to your build.gradle or upgrade to AGP 8.0+ (more details):
configurations {
    all {
        exclude group: 'com.google.errorprone', module: 'error_prone_annotations'
    }
}