I have a BroadcastReceiver which launches a HomeActivity with some information passed with the extras.
What happens when the activity is already running and the broadcast receiver gets triggered again which tries to launch the HomeActivity with new info. Does the OnResume() or OnCreate() of the activity execute?
If not, is there any other way of passing/reloading a running activity when a BroadcastReceiver is triggered?