[android-developers] Re: Can a GTalk message receiver know who sent the intent?

2008-04-02 Thread [EMAIL PROTECTED]
The intent does contain the sender of the intent. If you use intent.getStringExtra(from) you will get the senders jid. If you only want to process intent from a select group of people you will need to add a check before processing it. On Mar 31, 4:35 pm, Peli [EMAIL PROTECTED] wrote: I have the

[android-developers] Re: Can a GTalk message receiver know who sent the intent?

2008-04-02 Thread Peli
Thank you for this information. I had not found it in the documentation. Regarding the security issue, both, Juan and you, suggest to perform whatever security checks are necessary for my needs. But let me ask again: I'm not worried about the intents that I have control about. I could program

[android-developers] Re: Can a GTalk message receiver know who sent the intent?

2008-04-02 Thread jtaylor
Peli, My guess is that some kind of security layer will be added to the uses- permission, etc. in the AndroidManifest. - Juan On Apr 2, 9:43 pm, Peli [EMAIL PROTECTED] wrote: Thank you for this information. I had not found it in the documentation. Regarding the security issue, both, Juan