diff options
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothDevice.java')
-rw-r--r-- | framework/java/android/bluetooth/BluetoothDevice.java | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/framework/java/android/bluetooth/BluetoothDevice.java b/framework/java/android/bluetooth/BluetoothDevice.java index d9ab7ecc0e..f0a6c4a48a 100644 --- a/framework/java/android/bluetooth/BluetoothDevice.java +++ b/framework/java/android/bluetooth/BluetoothDevice.java @@ -1323,6 +1323,33 @@ public final class BluetoothDevice implements Parcelable, Attributable { } /** + * Returns the identity address of this BluetoothDevice. + * <p> For example, "00:11:22:AA:BB:CC". + * + * @return Bluetooth identity address as a string + * @hide + */ + @SystemApi + @RequiresBluetoothConnectPermission + @RequiresPermission(allOf = { + android.Manifest.permission.BLUETOOTH_CONNECT, + android.Manifest.permission.BLUETOOTH_PRIVILEGED, + }) + public @Nullable String getIdentityAddress() { + final IBluetooth service = sService; + if (service == null) { + Log.e(TAG, "BT not enabled. Cannot get identity address"); + return null; + } + try { + return service.getIdentityAddress(mAddress); + } catch (RemoteException e) { + Log.e(TAG, "", e); + } + return null; + } + + /** * Get the friendly Bluetooth name of the remote device. * * <p>The local adapter will automatically retrieve remote names when |