feat: update notification handling and improve media selection with captions

This commit is contained in:
2026-02-16 03:42:43 +05:00
parent 0a461c2cf2
commit c92cb0779a
8 changed files with 163 additions and 56 deletions

View File

@@ -95,10 +95,10 @@
# ============================================================
# R8 VerifyError fix: prevent R8 from generating invalid
# bytecode (instance-of on unexpected class Integer) in
# app UI lambdas with primitive boxing/unboxing
# bytecode in app UI lambdas (Compose/coroutine) that interact
# with third-party libraries involving primitive boxing/unboxing
# ============================================================
-keep,allowobfuscation class com.rosetta.messenger.ui.** { *; }
-keep class com.rosetta.messenger.ui.** { *; }
# ============================================================
# Data Models
@@ -174,3 +174,11 @@
# ============================================================
-keep class coil.** { *; }
-dontwarn coil.**
# ============================================================
# PhotoEditor (com.burhanrashid52:photoeditor)
# Prevents R8 from generating invalid bytecode (VerifyError:
# instance-of on unexpected class Integer) in PhotoEditorImpl
# ============================================================
-keep class ja.burhanrashid52.photoeditor.** { *; }
-dontwarn ja.burhanrashid52.photoeditor.**