Fixed
Status Update
Comments
kl...@google.com <kl...@google.com> #2
Is there any updates? This is a big problem!
[Deleted User] <[Deleted User]> #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!
gr...@google.com <gr...@google.com>
al...@rockettrade.com <al...@rockettrade.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!
mi...@gmail.com <mi...@gmail.com> #7
Hi. Is there any updates on this problem?
gr...@google.com <gr...@google.com> #8
Hi, I updated my version to alpha12 but still have these crashes. Please release a fix asap.
Description
- Jetpack Compose component used: SelectionContainer & Text
- Android Studio Build:
Android Studio Dolphin | 2021.3.1 Beta 5
Build #AI-213.7172.25.2113.8774922, built on June 28, 2022
Runtime version: 11.0.13+0-b1751.21-8125866 x86_64
- Kotlin version: 1.7.10
- Devices/Android versions reproduced on: Android 12 Pixel 3a
- Keyboard (i.e. Gboard, Samsung, etc): N/A
Compared to TextView in View system, there's only one menu - Copy in text toolbar when text is selected in SelectionContainer.
SelectAll is quite an important feature for our users.
Could you support it in SelectionContainer? Or is there any way to enable it in Compose?
Thank you!