I am missing something here and I hope someone can help me out. I am setting up an alarm using the following:
AlarmManager alarmManager = (AlarmManager)
You need to add the extras to the Intent before you pass it to the PendingIntent:
Intent broadcast_intent = new Intent(this, AlarmBroadcastReceiver.class);
broadcast_intent.putExtra("test", "ValueReceived"); //data to pass
PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0, broadcast_intent, 0);