Why the PendingIntent doesn’t send back my custom Extras setup for the Intent?
For some unspecified reason, extras will be delivered only if you’ve set some action, for example setAction(“foo”). What CommonsWare refers to applies only when obtaining PendingIntent instances, if you haven’t set FLAG_ONE_SHOT. That can be fixed by the requestCode argument in PendingIntent.get… factory methods. Although documentation says it’s currently not used, it actually takes into … Read more