I am registering receiver on onResume():
registerReceiver(wifiConnectivityReceiver, new IntentFilter(WifiManager.SUPPLICANT_CONNECTION_CHANGE_ACTION));
This is the receiver it self :
class WiFiConnectivityReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getBooleanExtra(WifiManager.EXTRA_SUPPLICANT_CONNECTED, false)) {
Log.d(TAG,"Connected to network!");
} else {
Log.d(TAG,"Could not connect to network!");
}
}
}
In my application I am able to connect to selected WiFi network,but this SUPPLICANT_CONNECTION_CHANGE_ACTION is never fired.If I change it to SUPPLICANT_STATE_CHANGED_ACTION for example it is working.
I am working on ICS.
Did someone experienced problems like this with this intent?