Skip to content

Instantly share code, notes, and snippets.

@jacklund
Created May 21, 2013 02:40
Show Gist options
  • Save jacklund/5617181 to your computer and use it in GitHub Desktop.
Save jacklund/5617181 to your computer and use it in GitHub Desktop.
Getting the wireless interface in Android
WifiManager wifiManager = (WifiManager)(getContext().getSystemService(Context.WIFI_SERVICE));
if (wifiManager.isWifiEnabled()) {
String wifiInterface = Utils.getProp("wifi.interface");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment