Features โจ and improvements ๐
- Enable camera animation hint during zoom out animations
Bug fixes ๐
- 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.
- Fixed image only
text-field
- Make 2D Location Indicator bbox available only for visible puck positions
- Fix potential data race in mapbox token initialization
- Minor fixes in
TileStore service
Dependencies
- Update gl-native to v11.15.0-beta.1, common to 24.15.0-beta.1.
- 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'
}
}