- 操作命令为
adb shell dumpsys activity activities -p 包名 > 日志输出地址
,
本机执行:
/Users/hanqing/Library/Android/sdk/platform-tools/adb shell dumpsys activity activities -p com.mohe.chuanhangselfcashier.activity > /Users/hanqing/Desktop/Activitys.txt
- 搜索关键字
* Hist
- 其他命令
#查看ActvityManagerService 所有信息
adb shell dumpsys activity
#查看Activity组件信息
adb shell dumpsys activity activities
#查看Service组件信息
adb shell dumpsys activity services
#查看ContentProvider组件信息
adb shell dumpsys activity providers
#查看BraodcastReceiver信息
adb shell dumpsys activity broadcasts
#查看Intent信息
adb shell dumpsys activity intents
#查看进程信息
adb shell dumpsys activity processes