I want to create a notification without canceling/deleting previous notifications from my app. Here is my code for creating a notification:
private void notifica
You are using a hardcoded id for your notification, of course it will replace the old one. Try using a variable ID instead of a hardcoded 100.
mNotificationManager.notify(100+x, mBuilder.build());
or something of the sort.