user1563001
user1563001

Reputation: 11

Android adb shell dumpsys battery reset

What does this command do in Android headset?

adb shell dumpsys battery reset

Do I need to do anything else after executing this command against a handset?

Upvotes: 1

Views: 14819

Answers (1)

Alex P.
Alex P.

Reputation: 31716

adb shell dumpsys battery prints out battery service state. For testing purposes you might want to mock some battery state properties with adb shell dumpsys battery set [property] [value] command.

The adb shell dumpsys battery reset gets the device out of the simulation mode back to reporting actual state.

Upvotes: 2

Related Questions