android - get many MAC Address -
i need many mac address 1 device in android. possible many mac address 1 device.? plz me.
chick here documentation mac address of wifi controller. click here documentation find mac address of bluetooth adapter.
edit1: if need hardware addresses of wifi access points available you. have scan networks (see here api) iterate on results mac address of each. (see here api)
code like
list<scanresult> scanresults= wfmanager.getscanresults(); (scanresult scanr: scanresults){ system.out.println(scanr.bssid); }
Comments
Post a Comment