Fixed
Status Update
Comments
jb...@google.com <jb...@google.com>
cl...@google.com <cl...@google.com> #2
Is there any updates? This is a big problem!
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!
ap...@google.com <ap...@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()
}
ap...@google.com <ap...@google.com> #6
Hi. Please merge the pull request. This is big problem!
pr...@google.com <pr...@google.com> #8
Hi, I updated my version to alpha12 but still have these crashes. Please release a fix asap.
Description
Component used: Navigation
Version used: 2.8.0-beta01
Devices/Android versions reproduced on: all
When specifying the
startDestination
for aNavHost
, if the destination class is instantiated with an empty list for one of its properties, the app will crash.Repro code:
Expected outcome:
App runs and displays an empty screen
Actual outcome:
App crashes with the following error in logcat:
Possibly related to: https://b.corp.google.com/issues/339481310