
XDA Recognized Developer tytydraco, the developer of the LADB app we covered the other day, is back with another app called Buoy.

If you don’t want to manually run shell commands and/or look through AOSP to find out exactly what each parameter does, then read on.

#BATTERY GURU ADB HOW TO#
Since we last covered how to tweak Android’s built-in battery saver mode through the command line, a developer has come up with an app that provides a GUI to change each of these parameters. Or settings put global battery_saver_constants "advertise_is_enabled=true,datasaver_disabled=true,enable_night_mode=true,launch_boost_disabled=true,vibration_disabled=true,animation_disabled=false,soundtrigger_disabled=true,fullbackup_deferred=true,keyvaluebackup_deferred=true,firewall_disabled=true,gps_mode=2,adjust_brightness_disabled=true,adjust_brightness_factor=0.5,force_all_apps_standby=true,force_background_check=true,optional_sensors_disabled=true,aod_disabled=true,quick_doze_enabled=true" If you want to revert battery saver mode back to its default parameters, then you can run either: settings delete global battery_saver_constants.…however, this won’t populate until after you’ve made changes to this Settings value at least once.

Alternatively, you can check the output of: settings get global battery_saver_constants This will show you the current battery saver policy and all the parameter values. If you want to know what the parameters under battery saver mode are currently set to, you can run the following ADB shell: dumpsys power | grep -A 128 "Battery saver policy".Where BOOLEAN is either true or false, INTEGER is a whole number, and FLOAT is a decimal number. Once you have ADB up and running, open a command prompt or terminal window and run the following command in shell: settings put global battery_saver_constants "advertise_is_enabled=BOOLEAN,datasaver_disabled=BOOLEAN,enable_night_mode=BOOLEAN,launch_boost_disabled=BOOLEAN,vibration_disabled=BOOLEAN,animation_disabled=BOOLEAN,soundtrigger_disabled=BOOLEAN,fullbackup_deferred=BOOLEAN,keyvaluebackup_deferred=BOOLEAN,firewall_disabled=BOOLEAN,gps_mode=INTEGER,adjust_brightness_disabled=BOOLEAN,adjust_brightness_factor=FLOAT,force_all_apps_standby=BOOLEAN,force_background_check=BOOLEAN,optional_sensors_disabled=BOOLEAN,aod_disabled=BOOLEAN,quick_doze_enabled=BOOLEAN".
#BATTERY GURU ADB PC#
#BATTERY GURU ADB ANDROID#
The list shown above is actually incomplete: Battery Saver mode on Android phones actually does more than what Google says on the support page. (Exclusive to Google’s Pixel 3 and later is an even more powerful Extreme Battery Saver Mode, but seeing as this is a Pixel-exclusive feature, we won’t be talking about it any further.) Pixel phones with 5G fall back to 4G service.On Pixel 4 and later Pixel phones, smooth display turns off.On Pixel 4 phones, Motion Sense turns off.On Pixel 3, Pixel 4, and later Pixel phones, car crash detection turns off.Pixel phones with Active Edge won’t respond to a squeeze.Instead, each time, tap Google Assistant. Your phone doesn’t listen for “Ok Google” and can’t continue a conversation.

