Fixed
Status Update
Comments
jb...@google.com <jb...@google.com>
ap...@google.com <ap...@google.com> #2
Project: platform/frameworks/support
Branch: androidx-main
commit bbbb64b3f857e1b425814f1ebdeceb127071777e
Author: Jeremy Woods <jbwoods@google.com>
Date: Thu Jan 25 21:02:10 2024
Mark savedStateHandle as @MainThread
SavedStateHandle uses ViewModel code that is required to be on the
MainThread so we should mark it has mainThread as well to avoid any
errors.
RelNote: "`NavBackStackEntry.savedStateHandle` is now marked as
@MainThread as it uses code that is required to be on the main thread
anyway."
Test: ./gradlew checkApi
Bug: 299523245
Change-Id: Ibb98890fa424cb8193f7be2e98e74fbd124eef88
M navigation/navigation-common/api/current.txt
M navigation/navigation-common/api/restricted_current.txt
M navigation/navigation-common/src/main/java/androidx/navigation/NavBackStackEntry.kt
https://android-review.googlesource.com/2929187
Branch: androidx-main
commit bbbb64b3f857e1b425814f1ebdeceb127071777e
Author: Jeremy Woods <jbwoods@google.com>
Date: Thu Jan 25 21:02:10 2024
Mark savedStateHandle as @MainThread
SavedStateHandle uses ViewModel code that is required to be on the
MainThread so we should mark it has mainThread as well to avoid any
errors.
RelNote: "`NavBackStackEntry.savedStateHandle` is now marked as
@MainThread as it uses code that is required to be on the main thread
anyway."
Test: ./gradlew checkApi
Bug: 299523245
Change-Id: Ibb98890fa424cb8193f7be2e98e74fbd124eef88
M navigation/navigation-common/api/current.txt
M navigation/navigation-common/api/restricted_current.txt
M navigation/navigation-common/src/main/java/androidx/navigation/NavBackStackEntry.kt
jb...@google.com <jb...@google.com> #3
This has been fixed internally and will be available in the Navigation 2.8.0-alpha03
release.
pr...@google.com <pr...@google.com> #4
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.navigation:navigation-common:2.8.0-alpha03
Description
Component used: Navigation Version used: 2.7.2
As the back stack state handle uses the ViewModel code under the hood that requires the main thread, it itself requires a call on the main thread. Annotated the
savedStateHandle
field as@MainThread
to prevent errors,