Skip to content

Commit 6bf33fc

Browse files
tomaszrybakiewiczabhishek1508
authored andcommitted
CHANGELOG entry
1 parent baec358 commit 6bf33fc

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Mapbox welcomes participation and contributions from everyone.
77
#### Bug fixes and improvements
88
- Updated `MapboxAudioGuidance`, used by `NavigationView`, to avoid playback of duplicate voice instructions when un-muting. [#6608](https://github.com/mapbox/mapbox-navigation-android/pull/6608)
99
- Optimized rerouting: now the reroute request is interrupted if the puck returns to the route. [#6614](https://github.com/mapbox/mapbox-navigation-android/pull/6614)
10+
- Fixed crash in `MapboxInfoPanelHeaderArrivalLayoutBinding.java` by disabling layout transitions in `InfoPanelHeaderActiveGuidanceBinder`, `InfoPanelHeaderArrivalBinder`, `InfoPanelHeaderDestinationPreviewBinder` and `InfoPanelHeaderRoutesPreviewBinder`. [#6616](https://github.com/mapbox/mapbox-navigation-android/pull/6616)
1011

1112
## Mapbox Navigation SDK 2.9.1 - 11 November, 2022
1213
### Changelog

qa-test-app/src/main/java/com/mapbox/navigation/qa_test_app/view/main/MainViewModel.kt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
package com.mapbox.navigation.qa_test_app.view.main
22

33
import androidx.lifecycle.ViewModel
4+
import com.mapbox.navigation.qa_test_app.domain.CATEGORY_COMPONENTS
5+
import com.mapbox.navigation.qa_test_app.domain.CATEGORY_DROP_IN
6+
import com.mapbox.navigation.qa_test_app.domain.CATEGORY_NONE
47
import com.mapbox.navigation.qa_test_app.domain.TestActivityDescription
58
import com.mapbox.navigation.qa_test_app.domain.TestActivitySuite
69
import kotlinx.coroutines.channels.BufferOverflow
@@ -19,9 +22,9 @@ class MainViewModel : ViewModel() {
1922
val didSelectInfoEvent: Flow<TestActivityDescription> = _didSelectInfoEvent.asSharedFlow()
2023

2124
val pages: List<PageInfo> = listOf(
22-
PageInfo("All", TestActivitySuite.CATEGORY_NONE),
23-
PageInfo("Drop-In UI", TestActivitySuite.CATEGORY_DROP_IN),
24-
PageInfo("Component Installer", TestActivitySuite.CATEGORY_COMPONENTS)
25+
PageInfo("All", CATEGORY_NONE),
26+
PageInfo("Drop-In UI", CATEGORY_DROP_IN),
27+
PageInfo("Component Installer", CATEGORY_COMPONENTS)
2528
)
2629

2730
fun getActivitiesList(category: String): List<TestActivityDescription> {

0 commit comments

Comments
 (0)