We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f178550 commit 1af7b06Copy full SHA for 1af7b06
android/src/main/java/com/devsonflutter/reflex/notification/NotificationListener.java
@@ -40,6 +40,11 @@ public class NotificationListener extends NotificationListenerService {
40
@RequiresApi(api = VERSION_CODES.N)
41
@Override
42
public void onNotificationPosted(StatusBarNotification notification) {
43
+ // Ignore group summary notification
44
+ if ((notification.getNotification().flags & Notification.FLAG_GROUP_SUMMARY) != 0) {
45
+ return;
46
+ }
47
+
48
// Package name as title
49
String packageName = notification.getPackageName();
50
ReflexPlugin.debugPrint("Notification Received From: " + packageName);
0 commit comments