I’m doing one application like raising email intent by time using AlarmManager. In this app, the Email intent raising by time perfectly. If we set one time for raising Email intent, it’ll work.
If we restart the device, before the time of event is reached. Then, the app should be work. But, it does not work.
What am missing? What they need to raise this after restarting the device?
You need using
BroadcastReceiverwith action<action android:name="android.intent.action.BOOT_COMPLETED" />in manifest file. Then you need start service from it.