其他分享
首页 > 其他分享> > app应用冷启时间测试

app应用冷启时间测试

作者:互联网

1.先杀死待测试应用进程

使用

adb shell

-->ps -A | grep [包名]

adb shell
 ps -A |grep gallery
u0_a94 31355 15406 15443064 171020 0 0 S com.xxxx.gallery

橙色为进程号

红色为包名

 

1.1 再使用kill 命令杀死进程

kill -9  31355 

前提是有root权限

1.2 直接使用force-stop命令停止进程

adb shell am force-stop com.xxxx.gallery

 

 

2.冷启动

输入:

adb shell am start -W com.xxxx.gallery/com.xxxx.gallery.app.GalleryActivity

com.xxxx.gallery.app.GalleryActivity:这是你应用冷启动第一个会打开的activity

 

 

输出:

Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.xxxx.gallery/com.xxx.gallery.app.GalleryActivity }
Status: ok
LaunchState: COLD
Activity: com.xxx.gallery/com.xxx.gallery.app.GalleryActivity
TotalTime: 640
WaitTime: 651
Complete

 

主要看Total time

与应用之前版本进行对比即可或者与对比应用对比数据

标签:shell,xxxx,冷启,app,adb,测试,com,gallery
来源: https://www.cnblogs.com/manshuoli/p/13896341.html