tags:

views:

51

answers:

1

how to get MacID of mobiledevice in android?

A: 

try this

WifiManager manager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
WifiInfo wifiInfo = manager.getConnectionInfo();
String MACAddress = wifiInfo.getMacAddress(); 
zapping
Thank you its working
deepthi