To get the active network type, one must use the ConnectivityManager together with the NetworkInfo class. However, by using the NetworkInfo class, I can only determine if the active network is TYPE_WIFI or TYPE_MOBILE. I know how to get the mac address of the WiFi interface. How can I get the mac address of the active network interface of the user if he's not using WiFi?
Below is a snippet of my code:
String macAddress;
switch(networkInfo.getType())
{
case ConnectivityManager.TYPE_WIFI:
WiFiManager wifiManager = (WiFiManager)getSystemService(Context.WIFI_SERVICE);
WifiInfo wifiInfo = wifiManager.getConnectionInfo();
macAddress = wifiInfo.getMacAddress(); //get mac address of the wifi interface
break;
default:
//How do I get the mac address if the user is not using a wiFi?
}