fix(service): resolve MeshService crash from eager notification channel init (#5034)

This commit is contained in:
James Rich 2026-04-09 22:24:03 -05:00 committed by GitHub
parent dba037466e
commit ebf3b8272c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 51 additions and 21 deletions

View file

@ -40,6 +40,10 @@
-dontobfuscate
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*,!code/allocation/variable
# Koin DI: prevent R8 from merging exception classes (observed as io.ktor.http.URLDecodeException
# replacing Koin's InstanceCreationException in stack traces, making crashes undiagnosable).
-keep class org.koin.core.error.** { *; }
# R8 optimization for Kotlin null checks (AGP 9.0+)
-processkotlinnullchecks remove