Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can't register receiver dynamically at boot. I have no activity. And I do not want to register it in the service.

Boot Receiver where I register another receiver:

package zzz.zzz.zzz;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;

public class AutoStart extends BroadcastReceiver
{   
    @Override
    public void onReceive(Context context, Intent intent)
    {   
        if ((intent.getAction() != null) && (intent.getAction().equals("android.intent.action.BOOT_COMPLETED")))
        {
            IntentFilter filter = new IntentFilter(Intent.ACTION_SCREEN_ON);
            filter.addAction(Intent.ACTION_SCREEN_OFF);
            BroadcastReceiver mReceiver = new ScreenReceiver();
            context.registerReceiver(mReceiver, filter);
        }
    }
}

Receiver that I want to register:

package zzz.zzz.zzz;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;

public class ScreenReceiver extends BroadcastReceiver 
{
    @Override
    public void onReceive(Context context, Intent intent)
    {
        if (intent.getAction().equals(Intent.ACTION_SCREEN_OFF)) 
        {
            // some code            
        }
        if (intent.getAction().equals(Intent.ACTION_SCREEN_ON)) 
        {
            // some code        
        }
    }
}

LogCat:

10-12 15:03:45.849: ERROR/AndroidRuntime(240): Uncaught handler: thread Thread-8 exiting due to uncaught exception
10-12 15:03:45.859: ERROR/AndroidRuntime(240): android.content.ReceiverCallNotAllowedException: IntentReceiver components are not allowed to register to receive intents
10-12 15:03:45.859: ERROR/AndroidRuntime(240):     at android.app.ReceiverRestrictedContext.registerReceiver(ApplicationContext.java:126)
10-12 15:03:45.859: ERROR/AndroidRuntime(240):     at android.app.ReceiverRestrictedContext.registerReceiver(ApplicationContext.java:120)
10-12 15:03:45.859: ERROR/AndroidRuntime(240):     at zzz.zzz.zzz.RegisterReceiver$1.run(RegisterReceiver.java:18)
10-12 15:03:46.159: ERROR/ContactsProvider(98): Cannot determine the default account for contacts compatibility
10-12 15:03:46.159: ERROR/ContactsProvider(98): android.accounts.AuthenticatorException: bind failure
10-12 15:03:46.159: ERROR/ContactsProvider(98):     at android.accounts.AccountManager.convertErrorToException(AccountManager.java:1096)
10-12 15:03:46.159: ERROR/ContactsProvider(98):     at android.accounts.AccountManager.access$500(AccountManager.java:74)
10-12 15:03:46.159: ERROR/ContactsProvider(98):     at android.accounts.AccountManager$BaseFutureTask$Response.onError(AccountManager.java:1003)
10-12 15:03:46.159: ERROR/ContactsProvider(98):     at android.accounts.IAccountManagerResponse$Stub.onTransact(IAccountManagerResponse.java:69)
10-12 15:03:46.159: ERROR/ContactsProvider(98):     at android.os.Binder.execTransact(Binder.java:287)
10-12 15:03:46.159: ERROR/ContactsProvider(98):     at dalvik.system.NativeStart.run(Native Method)
10-12 15:03:46.879: ERROR/MediaPlayerService(31): Couldn't open fd for content://settings/system/notification_sound
10-12 15:03:46.889: ERROR/MediaPlayer(52): Unable to to create media player
share|improve this question

3 Answers

up vote 4 down vote accepted

The answer is in the error message: IntentReceiver components are not allowed to register to receive intents. You can't register a new BroadcastReceiver in an existing BroadcastReceiver.

share|improve this answer
Oh yes! your are right! Thanks – XXX Oct 12 '11 at 15:54

can't you register this in the manifest ?

share|improve this answer
1  
No. It doesn't work from manifest. stackoverflow.com/questions/1588061/… – XXX Oct 12 '11 at 16:11
2  
may be you can start a service that can register a BroadcastReceiver. Also, may be calling context.getApplicationContext() could work – njzk2 Oct 14 '11 at 8:32
1  
Yes, you are right. I soled this problem with service. Thanks! – XXX Oct 17 '11 at 8:06
tried with context.getApplicationContext() for the same problem, it doesn't work – matheszabi Sep 20 '12 at 14:53
@XXX. I solved the problem with a service too. I needed to get the power connected state in a broadcast receiver, and that involves registering a service dynamically (can't use the manifest for this). I solved it by calling an IntentService from the receiver to do the work. A bit of pain, really - another class, another entry in the manifest. – Javaman59 Mar 25 at 4:12

I have launched the service in ACTION_BOOT_COMPLETED as

@Override
public void onReceive(Context context, Intent intent) {

    Log.d("BootReceiver", "onReceive() intent: " + intent.getAction());

    if (intent.getAction() != null) {

        // Boot completed
        if (intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)) {
            if(!isMyServiceRunning(context)){
                startTheService(context);
            }
        }

that will create my application behind of scene:

public class MyApplication extends Application

and there I have override the onCreate :

@Override
public void onCreate() {
    super.onCreate();
    Log.d("MyApplication", "registering for screen states");
    registerClassBecauseManifestIsNotEnough(getApplicationContext()) ;
}

private void registerClassBecauseManifestIsNotEnough(Context context) {
    IntentFilter intentFilter = new IntentFilter(Intent.ACTION_SCREEN_ON);
    intentFilter.addAction(Intent.ACTION_SCREEN_OFF);
    BroadcastReceiver mReceiver = new ScreenStateBroadcastReceiver();       
    context.registerReceiver(mReceiver, intentFilter);
}

Problem solved for me, at least.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.