Skip to content Skip to sidebar Skip to footer

Cannot Receive Broadcast In Ics

I writing 1 app for Android 4.0, and it's started via broadcastreceiver. My code is below: In AndroidManifest.xml:

Solution 1:

Starting from Android 3.0, application state was introduced. All applications are now installed with a state set to inactive, making all it's BroadcastReceivers inactive.

To make the state as active, the user must launch the application at least once and the OS will automatically activate the app and all its BroadcastReceivers.

In your case, you need to add an activity, be it a license agreement or a help page. This will create an icon for your app for the user to click and activate the app.

Note that the application's state will be set to back inactive if the user force-closes the application.

I faced a similar problem: Android ICS not receiving data sms

I hope that solves your problem or at least put you on the right track.

regards, Ahmad

Solution 2:

Try

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

below Internet's uses permission

Solution 3:

You need to do the following to overcome this security feature.

If your API level is below 12, then set the following to your intent before broadcasting it:

i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | 32);

Otherwise, add the following flag to include packages which are marked as Stopped too:

i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK|Intent. FLAG_INCLUDE_STOPPED_PACKAGES);

Post a Comment for "Cannot Receive Broadcast In Ics"