Update to gradle 8.9.0

This commit is contained in:
Greyson Parrelli
2025-03-29 15:56:43 -04:00
parent c31c75d189
commit 8a2e15b76b
8 changed files with 612 additions and 295 deletions

View File

@@ -112,7 +112,7 @@ object SignalSymbols {
private fun update(tp: TextPaint?) {
tp.apply {
val old = this!!.typeface
val oldStyle = old?.style ?: 0
val oldStyle = old?.style ?: Typeface.NORMAL
val font = Typeface.create(font, oldStyle)
typeface = font
}