diff --git a/CHANGELOG.md b/CHANGELOG.md index 41969023a4..2219d81d8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,9 +48,10 @@ Mapbox welcomes participation and contributions from everyone. * Fixes fog rendering when terrain is used with zero exaggeration. ([1891](https://github.com/mapbox/mapbox-maps-android/pull/1891)) * Fix `distance-to-center` filtering of symbols when terrain is enabled. ([1891](https://github.com/mapbox/mapbox-maps-android/pull/1891)) * Improved `cameraForCoordinate` result quality with pitch and with terrain. ([1891](https://github.com/mapbox/mapbox-maps-android/pull/1891)) +* Fix a crash on Android 10 and below, when Google Play Location Service is not present. ([1898](https://github.com/mapbox/mapbox-maps-android/pull/1898)) ## Dependencies -* Update gl-native to v10.10.0 and common to v23.2.0. ([1891](https://github.com/mapbox/mapbox-maps-android/pull/1891)) +* Update gl-native to v10.10.0 and common to v23.2.1. ([1891](https://github.com/mapbox/mapbox-maps-android/pull/1891) [1898](https://github.com/mapbox/mapbox-maps-android/pull/1898)) * Remove `mapbox-android-core` dependency, it is now part of Mapbox Common library. **NOTE:**: You need to remove any explicit dependency declaration to `com.mapbox.mapboxsdk:mapbox-android-core:` from the project to avoid duplicated class definition errors related to location APIs. ([1836](https://github.com/mapbox/mapbox-maps-android/pull/1836)) diff --git a/buildSrc/src/main/kotlin/Project.kt b/buildSrc/src/main/kotlin/Project.kt index ce5c473991..f7f0618032 100644 --- a/buildSrc/src/main/kotlin/Project.kt +++ b/buildSrc/src/main/kotlin/Project.kt @@ -114,7 +114,7 @@ object Versions { const val mapboxJavaServices = "5.4.1" const val mapboxBase = "0.8.0" const val mapboxGlNative = "10.10.0" - const val mapboxCommon = "23.2.0" + const val mapboxCommon = "23.2.1" const val androidxCore = "1.7.0" // last version compatible with kotlin 1.5.31 const val androidxFragmentTesting = "1.5.0" const val androidxAnnotation = "1.1.0"