how to get macid and mobile number only in android mobile device not in database
views:
104answers:
1
+1
A:
try this
WifiManager manager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
WifiInfo wifiInfo = manager.getConnectionInfo();
String MACAddress = wifiInfo.getMacAddress();
zapping
2010-02-05 06:24:02
thank you very much its working
narasimha
2010-02-17 09:07:16
you need to start accepting answers if its helped you. Currently you have a 0% accept rate.
zapping
2010-02-17 13:24:00