I\'ve got an Android application which needs to be woken up sporadically throughout the day.
To do this, I\'m using the AlarmManager to set up a PendingIntent and ha
Just override the onNewIntent like this and the Bundle var will be available in the onresume method:
@Override protected void onNewIntent(Intent intent) { super.onNewIntent(intent); setIntent(intent); }