Fixed
Status Update
Comments
il...@google.com <il...@google.com> #2
Is there any updates? This is a big problem!
il...@google.com <il...@google.com>
il...@google.com <il...@google.com>
ap...@google.com <ap...@google.com> #3
Hi there - could you provide more context on the issue & a sample project to reproduce? Database locked exceptions are quite difficult to pinpoint without a repro project. Thanks!
il...@google.com <il...@google.com> #4
Hi. It is reproduceable on some users by using this code:
suspend fun <R> MyDatabase.workaroundWithTransaction(block: suspend TransactionScope<R>.() -> R) {
useWriterConnection {
it.immediateTransaction(block)
}
// TODO: Temporally fix https://issuetracker.google.com/issues/340606803#comment2
// Manually triggers invalidation
invalidationTracker.refreshAsync()
}
Description
Component used: Navigation Version used: 2.3.5 Devices/Android versions reproduced on: Irrelevant ;)
Repro steps:
Expected Result: OnDestinationChangedListener receives callback when it is set, and then receives a callback when it causes navigation to B.
Actual Result: OnDestinationChangedListener receives callback when it is set, and then DOES NOT receive a callback when it causes navigation to B.
After the OnDestinationChangedListener is set, this sort of reentrant call works as would be expected, but when getting the callback after having set the OnDestinationChangedListener, it does not.
I think this simply requires swapping
and
in NavController.java. :)