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.