adb启动service等
一:启动serviceadb shell am startservice com.125la.test/.myService二:启动Activityadb shell am start com.125la.test/.MainActivity还可以带参数,我在Android 9.0测试...
adb shell dumpsys的使用
前言adb shell dumpsys命令用于打印出当前系统信息,也可以在命令后面加指定的查询的名称,还可以查询顶部运行的Activity正文查询服务方式一adb shell dumpsys > log.txt输出dumpsys新增到log.txt中,然后找到如下日志,表示启动的...
adb logcat的基本使用
adb logcat基本用法1. adb logcat //打印默认所有日志2. adb logcat -s tag //打印带有tag标签的所有日志3. adb logcat -v time //打印所有日志并带上时间4. adb logcat -s tag -v time //...