Hi, I encountered a problem with dynamic broadcastreceiver. I send an intent using sendBroadcast from App B, and it can be received in App B by both static receiver and dynamic receiver. However, when it comes to App A, it can only be received by static receiver.
I find on developer site that "registerReceiver (BroadcastReceiver receiver, IntentFilter filter)" is to "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." So, does this mean that dynamic broadcastreceiver can only receive intent in its own "main application thread", and cannot receive intent from other apps? Thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en