forked from GitHub-Mirror/riotX-android
8 lines
229 B
Bash
8 lines
229 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Ref: https://developer.android.com/training/monitoring-device-state/doze-standby#testing_doze
|
||
|
|
||
|
echo "Enable doze mode"
|
||
|
echo "adb shell dumpsys deviceidle force-idle"
|
||
|
adb shell dumpsys deviceidle force-idle
|