diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2021-08-10 02:31:28 +0000 |
---|---|---|
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | 2021-08-10 02:31:28 +0000 |
commit | dcea1a5aa51efe1af73f0ebc4e727ac71be28ab9 (patch) | |
tree | 81f28a56f0f032fc8a4c0d0a4fb64a92ee37261d /framework/java/android/bluetooth/BluetoothGatt.java | |
parent | d2613551e1963d5bd5b9f0de5287723866bd1afb (diff) | |
parent | 020a379b5068e9472c89bbb9f9882f3fc2dc011d (diff) |
Merge changes Icabed06e,I25bc13c6 am: 020a379b50
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1683328
Change-Id: Iccb3f39a62c0f8d34e986a12ca83e3c0b430b949
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothGatt.java')
-rw-r--r-- | framework/java/android/bluetooth/BluetoothGatt.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/framework/java/android/bluetooth/BluetoothGatt.java b/framework/java/android/bluetooth/BluetoothGatt.java index b3a7c8830d..b3ccdd0b77 100644 --- a/framework/java/android/bluetooth/BluetoothGatt.java +++ b/framework/java/android/bluetooth/BluetoothGatt.java @@ -101,6 +101,9 @@ public final class BluetoothGatt implements BluetoothProfile { /** A read or write operation was requested with an invalid offset */ public static final int GATT_INVALID_OFFSET = 0x7; + /** Insufficient authorization for a given operation */ + public static final int GATT_INSUFFICIENT_AUTHORIZATION = 0x8; + /** A write operation exceeds the maximum length of the attribute */ public static final int GATT_INVALID_ATTRIBUTE_LENGTH = 0xd; |