I'm trying to get the MAC address of bluetooth in my android device. So I'm using the following method:
BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
String macAddress = mBluetoothAdapter.getAddress();
The address returned is 02:00:00:00:00:00. I've seen questions and posts saying that it's not possible anymore to get your MAC address in android unless your application is a System Application.
So what if I really need to get the MAC address of my phone?? It's impossible to do it or what?
Note: I know this question is asked lots of times on SO, but most of the answers are out of date.