feat(android): update notification handling and UI responsiveness with new audio settings permission and improved back navigation

Credit: thanks to Sergey B (Samara Telegram - Reticulum Самара) for testing and providing solutions.
This commit is contained in:
Ivan
2026-04-30 11:52:10 -05:00
parent 24da5de7fd
commit b7e1593306
4 changed files with 77 additions and 39 deletions
@@ -51,7 +51,7 @@ public class MeshChatApplication extends PyApplication {
NotificationChannel messages = new NotificationChannel(
CHANNEL_ID_MESSAGES,
getString(R.string.notification_channel_messages_name),
NotificationManager.IMPORTANCE_DEFAULT
NotificationManager.IMPORTANCE_HIGH
);
messages.setDescription(getString(R.string.notification_channel_messages_desc));
nm.createNotificationChannel(messages);