diff --git a/src/com/android/settings/bluetooth/LocalBluetoothProfileManager.java b/src/com/android/settings/bluetooth/LocalBluetoothProfileManager.java old mode 100755 new mode 100644 index 5d254aec6b8..59a694442ab --- a/src/com/android/settings/bluetooth/LocalBluetoothProfileManager.java +++ b/src/com/android/settings/bluetooth/LocalBluetoothProfileManager.java @@ -346,7 +346,8 @@ final class LocalBluetoothProfileManager { removedProfiles.remove(mOppProfile); } - if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.Hid) && + if ((BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.Hid) || + BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.Hogp)) && mHidProfile != null) { profiles.add(mHidProfile); removedProfiles.remove(mHidProfile);