ADB的全称为Android Debug Bridge,就是起到调试桥的作用。
adb调试手机需要把usb调试打开
Android studio模拟器有的也要把模拟器usb调试打开,工具要灵活运用,
常见命令:
- adb start-server :开启ADB服务
- adb devices :列出所有设备
- adb logcat :查看日志
- adb kill-server :关闭ADB服务
- adb shell :挂载到Linux的空间
- adb install<应用程序(扩展名)> :安装应用程序
- adb-s <模拟器名称>install<应用程序(扩展名> :安装程序到指定模拟器
- adb uninstall<程序包名> :卸载指定应用程序
- adb cemulator-avd<模拟器名称>:启动模拟器
android studio的ADB位于SDK的platform-tools目录中,配置环境变量可在cmd里运行
//代码命令自己体验
C:\Users\admin>adb start-server
C:\Users\admin>adb devices
List of devices attached
emulator-5554 device C:\Users\admin>adb shell
generic_x86_64:/ $ exit
C:\Users\admin>