Come simulare il Doze mode con comandi adb ed altri stati in android.

APPUNTI

Di seguito alcuni appunti per ricordarmi come attivare in android diversi  stati per testare il comportamento di un’ app.

# Battery powered state
adb shell dumpsys battery | grep powered
# Unplug battery
adb shell dumpsys battery unplug
# Reset battery
adb shell dumpsys battery reset
# Dump Doze mode info
adb shell dumpsys deviceidle
# Enable Doze mode (may be required on Android Emulator)
adb shell dumpsys deviceidle enable
# Get status of Light Doze mode
adb shell dumpsys deviceidle get light
# Get status of Deep Doze mode
adb shell dumpsys deviceidle get deep
# Enter Light Doze mode (should be called several times to pass all phases)
adb shell dumpsys deviceidle step light
# Enter Light Doze mode (should be called several times to pass all phases)
adb shell dumpsys deviceidle step deep
Se vuoi farmi qualche richiesta o contattarmi per un aiuto riempi il seguente form

    Comments