Notification DeleteIntent Does Not Work
I've read several questions concerning similair issues, but they do not provide me with the solution. In my Android app I fire off a notification (in the Application class to be sp
Solution 1:
If you want to use the intent with a BroadcastReceiver, you should use PendingIntent.getBroadcast
instead of PendingIntent.getService
. You might also need to setup an appropriate intent filter.
Post a Comment for "Notification DeleteIntent Does Not Work"