I was wondering is it possible to register a broadcast receiver to receive two intents?
My code is as follows:
sipRegistrationListener = new Broadcas
Don't create your IntentFilter inline, then use the addAction method to add the UNREGISTERED action, i.e.:
IntentFilter
UNREGISTERED
IntentFilter filter = new IntentFilter(SIPEngine.SIP_REGISTERED_INTENT); filter.addAction(SIPEngine.SIP_UNREGISTERED_INTENT); context.registerReceiver(sipRegistrationListener, filter);