Key loading is not supported for LE only devices. --- android/bluetooth.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/android/bluetooth.c b/android/bluetooth.c index 51a31fe..c3ad5ce 100644 --- a/android/bluetooth.c +++ b/android/bluetooth.c @@ -3265,7 +3265,11 @@ static void load_devices_info(bt_bluetooth_ready cb) load_irks(irks); g_slist_free_full(irks, g_free); - load_link_keys(keys, cb); + if (adapter.supported_settings & MGMT_SETTING_BREDR) + load_link_keys(keys, cb); + else + cb(0, &adapter.bdaddr); + g_slist_free_full(keys, g_free); g_strfreev(devs); -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html