I\'m trying to use a local broadcast receiver.
In order to do so I\"ve done the next steps -
1) At an Activity, where Iwould like something to happen, I\'ve
You are using the LocalBroadcastManager
to send the request, but you register the receiver on the "global" Intent. You should either use LocalBroadcastManager to register the receiver or send the broadcast on the
application context:
Step 2
LocalBroadcastManager.getInstance(this).registerReceiver (receiver, filter);