Skip to content Skip to sidebar Skip to footer

Broadcast Receiver Not Working After Reboot

I have an broadcast receiver registered in the manifest for intercepting calls, like this:

Solution 1:

I know that this question is quite old but in my opinion still relevant. Since the currently accepted answer is wrong and the comment by user1806772 was the correct answer for me, I provide it as a new answer to the question:

It probably does work. But directly after reboot it can take a really long time (up to multiple minutes) until the intent is delivered. Some minutes after the reboot it should work fast again.

Solution 2:

You need to add this action to your intent-filter.

<action android:name="android.intent.action.BOOT_COMPLETED" />

Post a Comment for "Broadcast Receiver Not Working After Reboot"