I am setting up AlarmManager with a PendingIntent in activity A.
Then I would like to be able to call cancel() on the same PendingIntent from a different activity B.
The Android documentation says the following:
"If the creating application later re-retrieves the same kind of PendingIntent (same operation, same Intent action, data, categories, and components, and same flags), it will receive a PendingIntent representing the same token if that is still valid, and can thus call cancel() to remove it."
Is it possible to store a PendingIntent in a database
and retrieve it from a different activity?