adb常用总结

发布时间 2023-09-01 16:11:43作者: testcodell

0.远程连接手机
adb -s 'xx' tcpip 5555
adb connect 'localhost':'port'
#安装apk adb install C:\Users\Administrator\Downloads\__UNI__BA36E09_0831164743.apk
0.1.cpu
adb shell top

1.服务和内存
adb kill-server
adb devices
adb shell cat /proc/meminfo
adb shell procrank #查看系统进程pss等内存大小
adb shell dumpsys activity top | find "ACTIVITY" #查看启动的app包名
adb shell dumpsys meminfo 22797 #根据进程查看内存占用情况
adb shell ps | findstr uni.UNIBA36E09 #根据包名查看内存占用情况
adb shell ps #查看所有进程
adb shell dumpsys window | findstr mCurrentFocus #查看当前打开的应用包名
2.帧率
手机开启开发者选项中-GPU呈现模式分析 In adb shell dumpsys gfxinfo
3.应用启动时间
#查看包名和活动名
aapt dump badging "C:\Users\Administrator\Downloads\214.apk" | findstr package
aapt dump badging "C:\Users\Administrator\Downloads\214.apk" | findstr launchable-activity
#查看启动时间(冷热启动)
adb shell am start -W uni.UNIBA36E09/io.dcloud.PandoraEntry