I want to get my mac address on my android mobile, without using the Wi-fi or Bluetooth, programmatically in android.
How can I do this?
I want to get my mac address on my android mobile, without using the Wi-fi or Bluetooth, programmatically in android.
How can I do this?
 
    
     
    
    WifiManager wifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
WifiInfo wInfo = wifiManager.getConnectionInfo();
String macAddress = wInfo.getMacAddress(); 
Dont forget to add permission for ACCESS_WIFI_STATE
 
    
    