I have registered to ConnectivityManager.CONNECTIVITY_ACTION broad cast receiver, for receiving network state events, but my 'onReceive' function is not getting called when i turn on or off my wifi connection.
As i mentioned in the docs this is an Sticky Broadcast Receiver which gets fired when we register for it.
But i am not getting any events in my 'onReceive' function when i register for this receiver, what might be the cause?
In my Manifest file I have all the permissions for accessing Internet/Network/Wifi connections and there states.
I am registering to this intent using following code:
registerReceiver(mNetworkStateReceiver, new IntentFilter(ConnectivityManager.CONNECTIVITY_ACTION));
In my Logcat i get following Error Message register for this broadcast receiver:
01-01 00:05:29.804: ERROR/WifiHW(1305): Unable to open connection to supplicant on "/data/system/wpa_supplicant/wlan0": Connection refused
What might be the cause, is there anyway of finding our whether Broadcast Receiver is registered properly or not.
Thanks.
onReceive()formNetworkStateReceiver? – Free Wildebeest Jan 22 at 0:42