Creating a Notification at a particular time through Alarm Manager
I am trying to create a notification at a particular time. Im creating a broadcast receiver and calling it through the AlarmManager. Problem is that the broadcast is not received and that I am not getting any notifications. Registering the Broadcast Receiver in the Manifest, <receiver android:name="com.example.android.receivers"> <intent-filter> <action android:name="com.example.android.receivers.AlarmReceiver" /> </intent-filter> </receiver> This is the Broadcast Receiver, public class AlarmReceiver extends BroadcastReceiver { @Override public void onReceive(Context pContext, Intent pIntent)