I have a BroadcastReceiver for one time use.
BroadcastReceiver
I\'m registering it in an Activity. I can\'t put the unregisterReceiver() in onPause
unregisterReceiver()
onPause
Maybe the issue is that you are trying to unregister the receiver from the receiver's context, instead of the context where it was originally registered.