adb调试

  • 查看软件包名和类名:
  • adb logcat –c 作用:清除logcat内容

 

  • adb logcat ActivityManager:i *:s
  • 启动软件

 

  • 查看当前用户:

id  -un / whoami

 

  • 启动软件:

adb shell am start -n包名/类名

  • 启动uc登录百度

adb shell am start -a android.intent.action.VIEW -n 包名/类名 -d http://www.baidu.com

 

  • 关闭软件:

adb shell am force-stop 包名/类名

 

  • 查看pc端连接设备:

adb devices

 

  • 查看adb当前版本:

adb version

 

  • adb安装软件:

adb -s 设备名号 install apk路径

 

  • adb卸载软件:

adb -s 设备名号uninstall 包名

 

  • 将设备从设备中提取到PC中:

adb -s 设备号名 pull 设备路径 PC路径

 

  • 将设备从PC端推到设备:

adb -s 设备号名 push PC路径 设备路径

 

  • 获取当前设备的连接状态:

adb -s 设备名号 get-stat

 

  • 查看一个apk存在的路径:

adb shell pm path 包名

 

  • 查看手机中装的所有的包:

adb shell pm list packages

posted @ 2019-07-25 15:04  pw_fan  阅读(166)  评论(0编辑  收藏  举报