9

If suppose 40% battery is available in my android device, what is the adb command to set the battery % to 30? Using adb command can set battery % only to lower level / higher level also?

RVR
  • 651
  • 2
  • 6
  • 14

2 Answers2

24

You can use following command:

adb shell dumpsys battery set level 30

Sagar
  • 23,903
  • 4
  • 62
  • 62
3

Use the following command:

adb shell dumpsys battery set level 30

And use this to reset the level:

adb shell dumpsys battery reset

Mrinmoy Haloi
  • 143
  • 1
  • 7