So, let's say I had an app that used the same method to schedule multiple one-shot alarms and throw up a notification at the scheduled time for each. I'm fairly certain the method I created to handle this works (although I haven't tested it yet), comparing it to other examples I've found. Anyhow, the one thing that bothers me is something in the documentation.
public void cancel (PendingIntent operation) Since: API Level 1
Remove any alarms with a matching Intent. Any alarm, of any type, whose Intent matches this one (as defined by filterEquals(Intent)), will be canceled.
As this application is designed to have multiple one-shot alarms, I'm wondering if my assumption that since these all came from the same base intent created by the same method, that cancelling one alarm would cancel all of the alarms. If so, how would I go about working around this?