I'm trying to add e new wifi ssid programmatically but I'm facing a problem on length that is confusing me. Using the system gui (settings > Wireless & networking > Wifi settings > Add wifi network), i'm able to add this new item: SSID=123456, Security=WPA/WPA2 PSK, Password=12345678. Attempting the same programmatically i get these errors:
E/wpa_supplicant( 229): Line 0: Invalid passphrase length 6 (expected: 8..63) '123456"'. D/WifiConfigStore( 156): failed to set psk: "123456" D/WifiConfigStore( 156): Failed to set a network variable, removed network
This is the code
String _ssid = "123456";
String _password = "12345678"
WifiConfiguration _wifi_configuration = new WifiConfiguration();
_wifi_configuration.SSID = "\"" + _ssid + "\"";
_wifi_configuration.preSharedKey = "\"" + _password +"\"";
_wifi_configuration.hiddenSSID = true;
_wifi_configuration.status = WifiConfiguration.Status.ENABLED;
_wifi_configuration.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP);
_wifi_configuration.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.CCMP);
_wifi_configuration.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK);
_wifi_configuration.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.TKIP);
_wifi_configuration.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP);
_wifi_configuration.allowedProtocols.set(WifiConfiguration.Protocol.RSN);
WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);
wifi.addNetwork(wc);
wifi.enableNetwork(res, true);
The error is about an Invalid passphrase length 6, but 6 is the SSID length, not the passphrase length. What i'm doing wrong?
Thanks in advance L.