If the network SSID is a string, it should be enclosed in double quotation marks.
bug id: 2701058 Change-Id: I40e10ba096053710d4974b005d0d2e7c309ccffe
This commit is contained in:
@@ -301,7 +301,7 @@ public class ConnectivityManagerTestActivity extends Activity {
|
||||
if (sr.SSID.equals(knownSSID)) {
|
||||
Log.v(LOG_TAG, "found " + knownSSID + " in the scan result list");
|
||||
WifiConfiguration config = new WifiConfiguration();
|
||||
config.SSID = sr.SSID;
|
||||
config.SSID = convertToQuotedString(sr.SSID);
|
||||
config.allowedKeyManagement.set(KeyMgmt.NONE);
|
||||
int networkId = mWifiManager.addNetwork(config);
|
||||
// Connect to network by disabling others.
|
||||
@@ -387,6 +387,10 @@ public class ConnectivityManagerTestActivity extends Activity {
|
||||
context.sendBroadcast(intent);
|
||||
}
|
||||
|
||||
protected static String convertToQuotedString(String string) {
|
||||
return "\"" + string + "\"";
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onDestroy() {
|
||||
super.onDestroy();
|
||||
|
||||
Reference in New Issue
Block a user