I have created a notification for group summary, which may contain many notifications.
Those notifications have some actions added by addAction().
I try to cancel the notification after a action has been made:
NotitifactionCompat.from(context).cancel(notificationId);
Unfortunately, when the canceled notification was the last one of the summary, only the notification itself will be canceled, but not the summary too.
What am i missing?