I checked via adb and it looks like the app is writing incorrect keys to battery_saver_constants:
enable_datasaver, disable_vibration, disable_animation
These don't seem to be recognized by Android's BatterySaverPolicy, so they may have no actual effect on the system's power saving behavior.
The correct keys should be:
datasaver_disabled, vibration_disabled, animation_disabled
Since these are non-standard settings, they might not be. Could you confirm if the app reads these values and handles the logic internally?
I checked via adb and it looks like the app is writing incorrect keys to battery_saver_constants:
enable_datasaver, disable_vibration, disable_animation
These don't seem to be recognized by Android's BatterySaverPolicy, so they may have no actual effect on the system's power saving behavior.
The correct keys should be:
datasaver_disabled, vibration_disabled, animation_disabled
Since these are non-standard settings, they might not be. Could you confirm if the app reads these values and handles the logic internally?