then a normal broadcast Intent can be sent to it as follows. sendBroadcast( new Intent
"xper.specific.BROADCAST_INTENT"). setClassName(
"xper.specific",
"xper.specific.SpecificBroadcastReceiver"));
Note that, as in this example,
the Intent does not have to match the IntentFilter(s) associated with the
BroadcastReceiver, which has some interesting implications. Although specifying the BroadcastReceiver explicitly when sending the broadcast
Intent overrides the BroadcastReceiver’s IntentFilter(s) both sender and/or receiver permissions, if specified, still apply. It is not possible to send a broadcast Intent to a specific BroadcastReceiver in sticky mode. Attempting to do so results in a SecurityException.
12. Anonymous BroadcastReceivers It is possible to statically register a BroadcastReceiver without any IntentFilters. For example.
Broadcast Intents can still be sent to it by specifying the BroadcastReceiver explicitly
In this can it can only be done from the registering Application since in the BroadcastReceiver
has not been exportedIt is of course possible to export it as well