Android developers looking to get the Wifi MAC Address on Android M may have experienced an issue where the standard Android OS API to get the MAC Address returns a fake MAC
Resolved!
The MAC Address can still be grabbed from the path:
"/sys/class/net/" + networkInterfaceName + "/address";
Simply doing a file read, or a cat of that file will show the Wifi MAC Address.
Network interface names are usually along the lines of "wlan0" or "eth1"