1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-02 19:36:14 +02:00

[Huawei] Enable sleep detection

This commit is contained in:
Damien 'Psolyca' Gaignon 2024-04-16 23:33:46 +02:00 committed by José Rebelo
parent 408f4b75dd
commit c1e0b1fcd5
2 changed files with 3 additions and 2 deletions

View File

@ -492,7 +492,6 @@ public class HuaweiSupportProvider {
SharedPreferences.Editor editor = sharedPrefs.edit(); SharedPreferences.Editor editor = sharedPrefs.edit();
editor.putString(DeviceSettingsPreferenceConst.PREF_ACTIVATE_DISPLAY_ON_LIFT, "p_on"); editor.putString(DeviceSettingsPreferenceConst.PREF_ACTIVATE_DISPLAY_ON_LIFT, "p_on");
editor.apply(); editor.apply();
setTrusleep();
} }
onSetTime(); onSetTime();
getBatteryLevel(); getBatteryLevel();
@ -715,6 +714,9 @@ public class HuaweiSupportProvider {
if (getHuaweiCoordinator().supportsActivityReminder()) { if (getHuaweiCoordinator().supportsActivityReminder()) {
setActivityReminder(); setActivityReminder();
} }
if (getHuaweiCoordinator().supportsTruSleep()) {
setTrusleep();
}
if (getHuaweiCoordinator().supportsPromptPushMessage() && getProtocolVersion() == 2) { if (getHuaweiCoordinator().supportsPromptPushMessage() && getProtocolVersion() == 2) {
GetNotificationCapabilitiesRequest getNotificationCapabilitiesReq = new GetNotificationCapabilitiesRequest(this); GetNotificationCapabilitiesRequest getNotificationCapabilitiesReq = new GetNotificationCapabilitiesRequest(this);
getNotificationCapabilitiesReq.doPerform(); getNotificationCapabilitiesReq.doPerform();

View File

@ -8,7 +8,6 @@
android:summary="@string/huawei_trusleep_summary_light"> android:summary="@string/huawei_trusleep_summary_light">
<SwitchPreferenceCompat <SwitchPreferenceCompat
android:enabled="false"
android:icon="@drawable/ic_access_time" android:icon="@drawable/ic_access_time"
android:defaultValue="false" android:defaultValue="false"
android:key="trusleep" android:key="trusleep"