Skip to content

Instantly share code, notes, and snippets.

@NewProggie
Created May 1, 2012 18:54
Show Gist options
  • Save NewProggie/2570477 to your computer and use it in GitHub Desktop.
Save NewProggie/2570477 to your computer and use it in GitHub Desktop.
adb shell commands for putting device in car mode / dock mode
adb shell am broadcast -a android.intent.action.DOCK_EVENT --ei android.intent.extra.DOCK_STATE 0 // normal mode
adb shell am broadcast -a android.intent.action.DOCK_EVENT --ei android.intent.extra.DOCK_STATE 1 // dock mode
adb shell am broadcast -a android.intent.action.DOCK_EVENT --ei android.intent.extra.DOCK_STATE 2 // car mode
@varazir
Copy link

varazir commented Sep 1, 2016

Can you quarry if it's active or not?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment