We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 166539f commit 2ea4b4eCopy full SHA for 2ea4b4e
ble/src/main/java/no/nordicsemi/android/ble/error/GattError.java
@@ -111,6 +111,8 @@ public static String parseConnectionError(final int error) {
111
case GATT_CONN_LMP_TIMEOUT -> "GATT CONN LMP TIMEOUT";
112
case GATT_CONN_CANCEL -> "GATT CONN CANCEL ";
113
case GATT_ERROR -> "GATT ERROR"; // Device not reachable
114
+ case GATT_TIMEOUT -> "GATT TIMEOUT"; // Device not reachable, new Error added in Android 15
115
+ case GATT_PAIRING_WITH_UNIT_KEY_NOT_SUPPORTED -> "GATT PAIRING WITH UNIT KEY NOT SUPPORTED";
116
default -> "UNKNOWN (" + error + ")";
117
};
118
}
0 commit comments