Re: [android-developers] Broadcast to a specific class in another app

2011-05-09 Thread Paula Gabriela
Ok. Thanks a lot. 2011/5/9 Mark Murphy > On Mon, May 9, 2011 at 9:42 AM, Paula Gabriela wrote: > > Well.. I'm sorry if I misunderstood what you said, but I register my > > broadcast receive in my app2. > > > > In my APP2 I have: > > > > //APP2 > > String myAction = ..; > > IntentFilter filter

Re: [android-developers] Broadcast to a specific class in another app

2011-05-09 Thread Mark Murphy
On Mon, May 9, 2011 at 9:42 AM, Paula Gabriela wrote: > Well.. I'm sorry if I misunderstood what you said, but I register my > broadcast receive in my app2. > > In my APP2 I have: > > //APP2 > String myAction = ..; > IntentFilter filter = new IntentFilter(); > filter.addAction(myAction); > this.re

Re: [android-developers] Broadcast to a specific class in another app

2011-05-09 Thread Paula Gabriela
Well.. I'm sorry if I misunderstood what you said, but I register my broadcast receive in my app2. In my APP2 I have: *//APP2* String myAction = ..; IntentFilter filter = new IntentFilter(); filter.addAction(myAction); this.registerReceiver(receiver, filter); //<--this line right here where my

Re: [android-developers] Broadcast to a specific class in another app

2011-05-09 Thread Mark Murphy
On Mon, May 9, 2011 at 9:00 AM, Paula Gabriela wrote: > Hello everyone, > > I have a problem when I try to send a broadcast intent from App1 to App2 and > set my component name using setComponent() method > > That is, > > In my APP2 I have > String myAction = ..; > IntentFilter filter = new Intent

[android-developers] Broadcast to a specific class in another app

2011-05-09 Thread Paula Gabriela
Hello everyone, I have a problem when I try to send a broadcast intent from App1 to App2 and set my component name using *setComponent()* method That is, In my APP2 I have *String myAction = ..; IntentFilter filter = new IntentFilter(); filter.addAction(myAction); this.registerReceiver(receiver,