As the title suggests, I'm interested to discover what Android does with PendingIntents created by an application which has been removed from a device.
My research so far involves setting an alarm using AlarmManager and a pending intent. In the normal case all works as expected. To test the uninstall case I set up an alarm for some point in the future with the AlarmManager and a PendingIntent and then remove the app. What I observed is that nothing appears to happen - logcat shows no errors from my PendingIntent trying to launch a use a missing class for example.
I can't find an documentation on this so would like to know if anyone has knowledge on this or a link I can refer to.