Fossil Q: Hide unused authentication key preference

This commit is contained in:
Arjan Schrijver
2026-04-05 14:18:10 +02:00
committed by Arjan Schrijver
parent a03799fff3
commit 9093f730a2
@@ -313,9 +313,13 @@ public class QHybridCoordinator extends AbstractBLEDeviceCoordinator {
@Override @Override
public int[] getSupportedDeviceSpecificAuthenticationSettings() { public int[] getSupportedDeviceSpecificAuthenticationSettings() {
return new int[]{ if (isHybridHR()) {
R.xml.devicesettings_pairingkey return new int[]{
}; R.xml.devicesettings_pairingkey
};
} else {
return new int[0];
}
} }
@Nullable @Nullable