This example connects to a Wi-Fi access point with WEP encryption, given an SSID and the password.
public boolean ConnectToNetworkWEP(String networkSSID, String password)
{
try {
WifiConfiguration conf = new WifiConfiguration();
conf.SSID = "\"" + networkSSID ...