APP 性能测试
Posted 1531264
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了APP 性能测试相关的知识,希望对你有一定的参考价值。
1、环境安装:
adb sdk 模拟器:genymotion
2、在模拟器上安装APP
adb install app路径
3、adb指令
adb devices 查看链接的设备
adb logcat | find "START" 查看日志 过滤 "START"
adb shell am start -W -n com.ustcinfo.f.ch/.view.activity.LoginActivity 启动APP 可以查看APP启动时间
cmp=com.ustcinfo.f.ch/.view.activity.LoginActivity
adb shell am force-stop com.ustcinfo.f.ch 停止APP 再启动时 是冷启动
adb shell input keyevent 3 停止APP,相当于退回到后台,再启动时是热启动
4、cpu
adb shell dumpsys cpuinfo | find "com.ustcinfo.f.ch"
以上是关于APP 性能测试的主要内容,如果未能解决你的问题,请参考以下文章