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:
Xia Wang
2010-05-20 10:22:59 -07:00
parent dc737ca986
commit 069067963c

View File

@@ -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();