Posts

Showing posts from July, 2021

ADB Cheat Sheet

Lists all settings adb shell settings list global enables "show taps" on the UI adb shell settings put system show_touches 1 set the battery state as unplugged adb shell dumpsys battery unplug To set the battery percentage adb shell dumpsys battery set level 65 http://mikepalarz.me/2019/04/dumpsys-battery set the battery state as what is original(not so sure about this, you can try it out) adb shell dumpsys battery reset Return 1 if device is in battery saver mode, else returns 0 adb shell settings get global battery_saver_mode To show list of activities in backstack. I have discovered this command with lot of research. adb shell settings put global zen_mode 1 adb shell "pidof com.google.android.wearable.sysui | xargs kill" adb shell dumpsys activity activities| grep "* Hist" Command for accessibility https://gist.github.com/mrk-han/67a98616e43f86f8482c5ee6dd3faabe Enable wifi adb shell svc wifi enable This is not working.Haven't found a right solutio