adb 命令调试

一、adb 命令调试参数


1、adb shell 登录android  控制台


2、adb shell &cat /proc/kmsg  输出内核打印信息


3、adb logcat 输出安卓的打印信息


4、 linux 命令 adb logcat | grep "com.example.test" 输出包名为com.example.test 打印信息

windos 使用如下:adb logcat | findstr "com.example.test"


5、输出打印信息到文件 adb logcat | grep "com.example.test" > test.log


6、adb push local remote

将文件上传到设备 根目录 , adb push test.txt /

7、adb pull remote local 将文件下载到本地


8、adb restart server 重启服务


9、adb install package 安装应用(应用的包名)


10、adb uninstall package 卸载应用(应用的包名)


你可能感兴趣的:(android开发)