Which part of WifiInfo can be used to distinguish every unique access point in a big WLAN?

StackOverflow https://stackoverflow.com/questions/22282028

  •  11-06-2023
  •  | 
  •  

Which part of WifiInfo can be used to distinguish every unique access point in a big WLAN? BSSID or MAC address?

有帮助吗?

解决方案

BSSID of access point is essential to every device.

You should get a WifiManager instance and then call

wifiMgr.getConnectionInfo().getBSSID()

to retrieve the BSSID as a string, it is just the MAC address of your AP, format like 0C:DE:AD:1F:00:32

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top