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
2010-02-04 06:34:02
Thank you its working
deepthi
2010-02-08 07:00:40