mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-06-05 21:49:48 +02:00
actual deletetion of the Health app.
It brings the health watchapp back to the pristine state "you need pebble health in order to use this app". The data, however, is not deleted!
This commit is contained in:
@@ -678,12 +678,11 @@ public class PebbleProtocol extends GBDeviceProtocol {
|
||||
public byte[] encodeActivateHealth(boolean activate) {
|
||||
byte[] blob;
|
||||
byte command;
|
||||
command = BLOBDB_INSERT;
|
||||
if (activate) {
|
||||
command = BLOBDB_INSERT;
|
||||
blob = new byte[]{0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02};
|
||||
} else {
|
||||
command = BLOBDB_DELETE;
|
||||
blob = null;
|
||||
blob = new byte[]{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|
||||
}
|
||||
return encodeBlobdb("activityPreferences", command, BLOBDB_HEALTH, blob);
|
||||
}
|
||||
|
Reference in New Issue
Block a user