And again I've got a question, which is again Android related. It's just for me to get more insight on the workings of sending broadcast.
What I would like to know is:
1. Why would one use the broadcast receiver over activities for result?
I thought the broadcast receiver would be more useful to handle actual device messages, than just for passing around intents in an app.
2. What kind of security issues could a developer encounter?
Am I right if I assume, that anyone that knows my package name (maybe through reverse engineering), could basically catch the sent intents and see the information passed with it?
3. What good is the LocalBroadcastManager if you want to pass objects to other activities?
I read that this might be better if you don't want the sent intents to leak outside the app. Does this also means that even if someone has the package name they still not can receive the broadcast outside the app?
If you think my questions are not complete or are based on flawed assumptions, please let me know, so I can learn from it. :)
Many thanks to all that can help.
Cheers,
Do