I'm trying to find if scanResult is the current connected wifi network.
here is my code
public boolean IsCurrentConnectedWifi(ScanResult scanResult)
{
WifiManager mainWifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);
WifiInfo currentWifi = mainWifi.getConnectionInfo();
if(currentWifi != null)
{
if(currentWifi.getSSID() != null)
{
if(currentWifi.getSSID() == scanResult.SSID)
return true;
}
}
return false;
}
I have no problem on getting scanresult.
Always I'm getting currentWifi is null.
Where am I wrong or Is there any alternative method to do this?