Android 12 - app notifications fire and immediately leave the tray for this app. Other apps work OK

An issue with how your app handles notifications in Android 12. Check if your notification uses setAutoCancel(true), which can cause it to disappear when tapped. Also, ensure you’re not unintentionally calling cancel() on the notification. Differences in behavior between Android 12 and 13 could be due to changes in notification permissions, foreground service handling, or OEM-specific quirks. Try logging notification events to see when and why they are dismissed.

1 Like