tags:

views:

104

answers:

1

how to get macid and mobile number only in android mobile device not in database

+1  A: 

try this

WifiManager manager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
WifiInfo wifiInfo = manager.getConnectionInfo();
String MACAddress = wifiInfo.getMacAddress(); 
zapping
thank you very much its working
narasimha
you need to start accepting answers if its helped you. Currently you have a 0% accept rate.
zapping