启动时间

启动共分两种,分别为冷启动、热启动

冷启动:应用首次启动并占用资源的过程

热启动:应用程序切后台回前台的过程


监控进程启动指令,查看启动进程的包名、activity名

adb logcat | grep START(mac)

adb logcat | findstr START (windows)


冷启动:

启动app的adb指令:adb shell am start -W -n package/activity

启动过程完成会输出完成的耗时

停止app的adb指令:adb shell am force-stop package


热启动:

启动app的adb指令:adb shell am start -W -n package/activity

启动过程完成会输出完成的耗时

停止app的adb指令:adb shell input keyevent 3

相当于点击手机的back键


自动化脚本实现启动时间的监控

1、获取命令执行时间,作为启动时间参考值

2、在命令前后加上时间戳,以差值作为参考值(精准度高)


你可能感兴趣的:(启动时间)