1)获取设备列表
adb devices
2)获取包名和activity
adb shell dumpsys window|grep mCurrentFocus
3)解决adb链接多台设备问题
adb -s <设备名> shell——指定device来执行adb shell。
adb -s <设备名> <指令>——在指定设备执行指令
4)通过usb 安装apk
进入终端 adb install (apk文件拖进来)