I'm working on a combination of few big projects which I'm not much familiar. I have a Local broadcast events and it register from the script.
context.registerReceiver(stReceiver, stIntents);
private BroadcastReceiver stReceiver = new BroadcastReceiver() {
@SuppressWarnings("unchecked")
@Override
public void onReceive(Context context, Intent intent) {
}
};
I need to find out where is this broadcastReceiver calling from? Is there any way to find out from which class .sendBroadcast(intent);
calls?