获取当前运行app的包名
adb shell dumpsys window | findstr mCurrentFocus
查看当前前台应用的包名
查看连接设备
adb devices
查看日志
adb logcat
上传/下载文件
adb push/pull
登陆设备shell
adb shell
安装app
adb install xxx.APK(安装文件名)
-s 安装到指定设备
卸载app
adb uninstall XXX.XXX.XXX(包名)
通过wifi连接手机
adb connect/disconnect 0.0.0.0:8888
终止/启动adb服务
adb kill/start-server
列出设备中所有的包名
adb shell pm list packages
-f 所有包名及其路径
-s 系统包名
-3 用户包名