Get Bluetooth local mac address in Marshmallow

前端 未结 8 529
半阙折子戏
半阙折子戏 2020-11-29 06:23

Pre Marshmallow my app would obtain it\'s device MAC address via BluetoothAdapter.getDefaultAdapter().getAddress().

Now with Marshmallow Android is retu

8条回答
  •  南笙
    南笙 (楼主)
    2020-11-29 07:07

    zmarties is right but you can still get the mac address via reflection or Settings.Secure:

      String macAddress = android.provider.Settings.Secure.getString(context.getContentResolver(), "bluetooth_address");
    

提交回复
热议问题