赞
踩
adb 的运行原理是 PC 端的 adb server 与手机端的守护进程 adbd 建立连接,然后 PC 端的 adb client 通过 adb server 转发命令,adbd 接收命令后解析运行。
连接:adb connect 192.168.1.169(连数据线看看)
查看设备状态:adb devices
查看所有应用:adb shell pm list packages
查看系统应用:adb shell pm list packages -s
查看第三方应用:adb shell pm list packages -3
安装软件:adb install D:\kunlun\faceGridTerminal_v13_debug.apk
卸载软件:adb uninstall com.faceGridTerminal
启动 adb server 命令:adb start-server
停止 adb server 命令:adb kill-server
root 权限执行:adb root
清除应用数据与缓存:adb shell pm clear com.qihoo360.mobilesafe
强制停止应用进程和服务:adb shell am force-stop com.qihoo360.mobilesafe
显示日志:adb logcat
D:\app3\android_sub>adb devices
List of devices attached
f00388a3 device
D:\app3\android_sub>adb -s f00388a3 tcpip 5326
restarting in TCP mode port: 5326
D:\app3\android_sub>adb connect 192.168.3.207:5326
connected to 192.168.3.207:5326
D:\app3\android_sub>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。