Android在棉花糖中获取蓝牙地址

3 android mac-address android-bluetooth android-6.0-marshmallow

mac因为android 6 marshmallow,blutooth地址和wifi地址()被删除.

bluetooth.getAddress();
Run Code Online (Sandbox Code Playgroud)

我们如何从Android设备获取唯一号码,如蓝牙地址或wifi mac地址?

Adn*_*aki 6

有意删除了对mac地址的访问:

http://developer.android.com/about/versions/marshmallow/android-6.0-changes.html

使用此代码:通过反射或Settings.Secure获取mac地址:

 String macAddress = android.provider.Settings.Secure.getString(context.getContentResolver(), "bluetooth_address");
Run Code Online (Sandbox Code Playgroud)