I have an receiver which is registered in AndroidManifest, but it seems like it can't receive intents when application is killed, assume I have some misunderstanding in Android process life-cycle?
Thanks for any help.
I have an receiver which is registered in AndroidManifest, but it seems like it can't receive intents when application is killed, assume I have some misunderstanding in Android process life-cycle?
Thanks for any help.
If the user goes into Settings and force-stops your application, on Android 3.1 and higher your BroadcastReceivers will no longer work. You are returned to the same state you are in when your app is first installed -- something must manually run a component (e.g., user launches an activity from the home screen) before your BroadcastReceivers will work again.