demo-mode-activate.sh 657 B

123456789101112
  1. #!/usr/bin/env bash
  2. adb shell settings put global sysui_demo_allowed 1
  3. adb shell am broadcast -a com.android.systemui.demo -e command enter
  4. adb shell am broadcast -a com.android.systemui.demo -e command notifications -e visible false
  5. adb shell am broadcast -a com.android.systemui.demo -e command battery -e level 100
  6. adb shell am broadcast -a com.android.systemui.demo -e command network -e wifi show
  7. adb shell am broadcast -a com.android.systemui.demo -e command clock -e hhmm 1337
  8. # workaround for Android Pie hidden API Espresso bug
  9. adb shell settings put global hidden_api_policy_pre_p_apps 1
  10. adb shell settings put global hidden_api_policy_p_apps 1