Android Debug Bridge(adb)是一种多功能命令行工具,可让你与设备进行通信。adb 命令为各种设备操作(如安装和调试应用程序)提供了便利。 ——Android Developers
下载
adb 包含在 Android SDK Platform-Tools 中,Platform-Tools 可在此处下载
常用命令
列出设备adb devices
adb server
开启 serveradb start-server
关闭 serveradb 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
真棒!