Fixed
Status Update
Comments
dr...@gmail.com <dr...@gmail.com> #2
Is there any updates? This is a big problem!
ki...@google.com <ki...@google.com>
no...@google.com <no...@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!
si...@google.com <si...@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()
}
si...@google.com <si...@google.com>
an...@google.com <an...@google.com> #6
Hi. Please merge the pull request. This is big problem!
dr...@gmail.com <dr...@gmail.com> #7
Hi. Is there any updates on this problem?
si...@google.com <si...@google.com> #8
Hi, I updated my version to alpha12 but still have these crashes. Please release a fix asap.
dr...@gmail.com <dr...@gmail.com> #9
Will there be fixes released this Wednesday?
Description
When using
ResourcesCompat.getFont
to resolve a .ttf file in res/font, the returnedTypeface
instance always has a weight of 400 and a style ofNORMAL
.On all APIs < 29, style correctly resolves to
ITALIC
. On API 28, weight correctly resolves to 300.The font actually looks correct when displayed on an API 29 device, it just has the wrong values according to the
Typeface
instance.The issue is reproducible in this test class . Several tests fail on API 29 only due to this issue. I've also added a temporary
typefaceBug
test case that uses an ActivityScenario to demonstrate that the text actually appears correctly on API 29.