I'm making an android app and I would like to cancel all notifications that have a certain tag.
Right now it only seems possible to cancel notifications by their id (int id) or by both their ids and tags.
mNotificationManager.cancel(int id);
or
mNotificationManager.cancel(String tag, int id);
I want to be able to cancel all notifications of String tag regardless of int id.
Is this possible?