Skip to content

Instantly share code, notes, and snippets.

@gwsu2008
Last active January 3, 2020 06:34
Show Gist options
  • Save gwsu2008/dae89f420170332d694eb98303e0d35d to your computer and use it in GitHub Desktop.
Save gwsu2008/dae89f420170332d694eb98303e0d35d to your computer and use it in GitHub Desktop.
adb-commands
# List service
adb shell dumpsys -l
# Turn on bluetooth
adb shell service call bluetooth_manager 6
adb shell dumpsys bluetooth_manager
# Wake up device ${UDID} if the screen is off
adb -s ${UDID} shell dumpsys power | grep "Display Power: state=ON" | xargs -0 test -z && adb -s ${UDID} shell input keyevent 26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment