adb命令

adb devices 列出所有的设备
adb start-server 开启adb服务
adb kill-server 关闭adb服务
adb logcat 查看Log
adb shell 挂载到Linux的空间
adb install <应用程序(加扩展名)> 安装应用程序
adb –s <模拟器名称> install <应用程序(加扩展名)> 安装应用到指定模拟器
adb uninstall <程序包名>
adb pull
adb push
emulator –avd <模拟器名称>
ctrl + F11 横竖屏的切换

原文地址:https://www.cnblogs.com/ITniu/p/6040234.html