Simple question - Can I register a single BroadcastReceiver to multiple Intent actions? Here\'s what I\'m considering:
BroadcastReceiver
Yes, you can have multiple actions for the same BroadcastReceiver. In fact, what you did is just correct:
I have already used this approach in a project and it worked.