I have implemented the notification for my device.
It works great. But if i reboot the device it is not going to work at all.
So whats the wrong with it ? Should i have to add anithing in manifest ?
I have added this code to receive the broadcast of notification class.
code:
<!-- To receive the Alarm Notification -->
<receiver android:name=".AlarmNotificationReceiver" android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.PHONE_STATE"></action>
</intent-filter>
</receiver>
Thanks.