Fixed
Status Update
Comments
ap...@google.com <ap...@google.com> #2
Is there any updates? This is a big problem!
hu...@google.com <hu...@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!
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!
an...@google.com <an...@google.com> #7
Hi. Is there any updates on this problem?
ap...@google.com <ap...@google.com> #8
Hi, I updated my version to alpha12 but still have these crashes. Please release a fix asap.
Description
When the user specifies a destination to store the result of an image capture (with the use of
outputFileOptions
), theImageCapture
use case should verify whether this destination is valid before triggering the image capture request to the camera. If the destination is not valid, the operation should fail fast and the user should be notified about it.