查看运行的service
如果要查看当前手机上运行有哪些service(不可以先 adb shell 再执行后面的,否则显示的进程就不对了,至少我的是这样的):
adb shell dumpsys activity services
当然,肯定是可以加 grep 关键字过滤的:
adb shell dumpsys activity services | grep MiniAppPreService
同理,我们也可以通过 grep 过滤查看当前一组进程(下面示例是过滤出名字中包含 com.example.io 的):
adb shell ps | grep com.example.io