Skip to content

Commit 2cf513d

Browse files
temapgithub-actions[bot]
authored andcommitted
Changelogs for common v24.22.0-alpha.2, gl-native v11.22.0-alpha.2, navigation-native v324.22.0-alpha.2, search v2.22.0-alpha.2, search-ios v2.22.0-alpha.2, navigation-sdk-cpp v0.22.0-alpha.2, maps-ios v11.22.0-alpha.2, maps-android v11.22.0-alpha.2, maps-flutter v2.22.0-alpha.2
GitOrigin-RevId: e2418cd7e06a9c44debab6354f8783435132bca5
1 parent ebc3e98 commit 2cf513d

15 files changed

Lines changed: 22 additions & 17 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ Mapbox welcomes participation and contributions from everyone.
55
> **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](https://developer.android.com/guide/practices/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
66
77
# main
8+
9+
# 11.22.0-alpha.2 April 08, 2026
10+
## Dependencies
11+
* Update gl-native to [v11.22.0-alpha.2](https://github.com/mapbox/mapbox-maps-android/releases/tag/v11.22.0-alpha.2), common to [v24.22.0-alpha.2](https://github.com/mapbox/mapbox-maps-android/releases/tag/v11.22.0-alpha.2).
12+
813
## Features ✨ and improvements 🏁
914
* Expose `height` and `minHeight` properties on `StandardBuildingsFeature`.
1015
* Deprecate `PointAnnotation.iconImage` getter. Reading this property exposes an internally generated image ID managed by the annotation manager. If you need a stable, reusable image ID, register the image in the style yourself via the Style API and pass the ID explicitly via `PointAnnotationOptions.withIconImage(String)`. In that case you are responsible for the image's lifecycle and must remove it from the style when no longer needed.

extension-androidauto/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ allprojects {
3333
// In your build.gradle, add the extension with your other dependencies.
3434
dependencies {
3535
// Note that the Mapbox Android Auto Extension depends on the entire Mapbox Maps SDK, it will bring the whole Mapbox Maps SDK with the same version as transitive dependency.
36-
implementation 'com.mapbox.extension:maps-androidauto:11.21.0'
36+
implementation 'com.mapbox.extension:maps-androidauto:11.22.0-alpha.2'
3737
}
3838
```
3939

extension-compose/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ allprojects {
5151
5252
// In your build.gradle, add the compose extension with your other dependencies.
5353
dependencies {
54-
implementation 'com.mapbox.extension:maps-compose:11.21.0'
54+
implementation 'com.mapbox.extension:maps-compose:11.22.0-alpha.2'
5555
5656
// Pick your versions of Android Mapbox Map SDK
5757
// Note that Compose extension is compatible with Maps SDK v11.0+.
58-
implementation 'com.mapbox.maps:android:11.21.0'
58+
implementation 'com.mapbox.maps:android:11.22.0-alpha.2'
5959
}
6060
```
6161

extension-localization/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ allprojects {
3131
3232
// In the app build.gradle file
3333
dependencies {
34-
implementation 'com.mapbox.extension:maps-localization:11.21.0'
34+
implementation 'com.mapbox.extension:maps-localization:11.22.0-alpha.2'
3535
}
3636
```
3737

extension-style/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ allprojects {
3232
3333
// In the app build.gradle file
3434
dependencies {
35-
implementation 'com.mapbox.extension:maps-style:11.21.0'
35+
implementation 'com.mapbox.extension:maps-style:11.22.0-alpha.2'
3636
}
3737
```
3838

plugin-animation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ allprojects {
3434
3535
// In the app build.gradle file
3636
dependencies {
37-
implementation 'com.mapbox.plugin:maps-animation:11.21.0'
37+
implementation 'com.mapbox.plugin:maps-animation:11.22.0-alpha.2'
3838
}
3939
```
4040

plugin-annotation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ allprojects {
3030
3131
// In the app build.gradle file
3232
dependencies {
33-
implementation 'com.mapbox.plugin:maps-annotation:11.21.0'
33+
implementation 'com.mapbox.plugin:maps-annotation:11.22.0-alpha.2'
3434
}
3535
```
3636

plugin-attribution/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ allprojects {
3333
3434
// In the app build.gradle file
3535
dependencies {
36-
implementation 'com.mapbox.plugin:maps-attribution:11.21.0'
36+
implementation 'com.mapbox.plugin:maps-attribution:11.22.0-alpha.2'
3737
}
3838
```
3939

plugin-compass/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ allprojects {
3232
3333
// In the app build.gradle file
3434
dependencies {
35-
implementation 'com.mapbox.plugin:maps-compass:11.21.0'
35+
implementation 'com.mapbox.plugin:maps-compass:11.22.0-alpha.2'
3636
// Mapbox Maps Compass Plugin depends on the Mapbox Maps Animation Plugin
37-
implementation 'com.mapbox.plugin:maps-animation:11.21.0'
37+
implementation 'com.mapbox.plugin:maps-animation:11.22.0-alpha.2'
3838
}
3939
```
4040

plugin-gestures/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ allprojects {
3030
3131
// In the app build.gradle file
3232
dependencies {
33-
implementation 'com.mapbox.plugin:maps-gestures:11.21.0'
33+
implementation 'com.mapbox.plugin:maps-gestures:11.22.0-alpha.2'
3434
// Mapbox Maps Gestures Plugin depends on the Mapbox Maps Animation Plugin
35-
implementation 'com.mapbox.plugin:maps-animation:11.21.0'
35+
implementation 'com.mapbox.plugin:maps-animation:11.22.0-alpha.2'
3636
}
3737
```
3838

0 commit comments

Comments
 (0)