Android Debug Bridge(adb)是一种多功能命令行工具,可让你与设备进行通信。adb 命令为各种设备操作(如安装和调试应用程序)提供了便利。 ——Android Developers

下载

adb 包含在 Android SDK Platform-Tools 中,Platform-Tools 可在此处下载

常用命令

列出设备
adb devices

adb server
开启 server
adb start-server
关闭 server
adb kill-server

重连
可解决设备状态为 unauthorized 的问题
adb reconnect

连接网络设备
adb connect [host]:[port]

传输文件
本地->设备
adb push [local] [remote]
设备->本地
adb pull [remote] [local]

冰箱

普通 adb 模式激活

adb shell sh /sdcard/Android/data/com.catchingnow.icebox/files/start.sh

设备管理员模式激活

adb shell dpm set-device-owner com.catchingnow.icebox/.receiver.DPMReceiver