Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

if i register a broadcast receiver say in my activity like this,

@Override
protected void onResume() {
    super.onResume();

    myReceiver = new BroadcastReceiver() { ... };
    IntentFilter filter = new IntentFilter("com.example.MY_ACTION");
    registerReceiver(myReceiver, filter);
}

is this receiver exported? if another app broadcasts com.example.MY_ACTION, will it be received by myReceiver?

if it is, i assume i need to use the form of registerReceiver() that accepts a string permission, and then define that permission in my manifest, giving it a high protection level (such as signature). is that correct? is there a simpler way?

thanks.

share|improve this question
They are exported. For ways to protect, check this out: stackoverflow.com/questions/9528608/… – Kaediil Jul 26 '12 at 18:06
that post is about manifest-registered receivers. i'm specifically asking about programmatically registered receivers. – Jeffrey Blattman Jul 26 '12 at 18:59
Makes no difference. Once your app is running and you start the receiver anyone can send intents to you. – Kaediil Jul 26 '12 at 19:55
well, you need to cite your source, because this quote from the android docs contradicts you: "Register a BroadcastReceiver to be run in the main activity thread. The receiver will be called with any broadcast Intent that matches filter, in the main application thread.". – Jeffrey Blattman Jul 26 '12 at 20:04
1  
Ok, one last time just for you this time from the docs, right at the top of the BroadcastReceiver API: If you don't need to send broadcasts across applications, consider using this class with LocalBroadcastManager instead of the more general facilities described below. This will give you a much more efficient implementation (no cross-process communication needed) and allow you to avoid thinking about any security issues related to other applications being able to receive or send your broadcasts. Anymore questions? – Kaediil Jul 26 '12 at 20:33
show 4 more comments

1 Answer

up vote 0 down vote accepted

From the api docs on the BroadcastReceiver API:

If you don't need to send broadcasts across applications, consider using this class with LocalBroadcastManager instead of the more general facilities described below. This will give you a much more efficient implementation (no cross-process communication needed) and allow you to avoid thinking about any security issues related to other applications being able to receive or send your broadcasts.

That way at least you can keep the receiver only inside your application.

share|improve this answer
while this does not technically answer my question, it is a solution to the implied problem. – Jeffrey Blattman Jul 27 '12 at 15:57

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.