Android在棉花糖中获取蓝牙地址
作者:互联网
从android 6开始,blutooth地址和wifi地址(mac)被删除
棉花糖.
bluetooth.getAddress();
我们如何从Android设备获取唯一号码,如蓝牙地址或wifi mac地址?
解决方法:
有意删除了对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");
标签:mac-address,android-bluetooth,android,android-6-0-marshmallow 来源: https://codeday.me/bug/20190824/1706742.html