cmd命令集
# 1. 查看手机安装包的md5值
certutil -hashfile 安装包 MD5
1
# 2. 查看Log的安装包
adb logcat ->存放目录
1
# 3. 查看当前运行的安装包名及运行界面
adb shell dumpsys window | findstr mCurrentFocus
1
# 4. 查看当前包的版本信息
adb shell dumpsys package com.calendar2345 | findstr version
1
# 5. 查看apk名的第一个launcher页面
# 方式一:
adb logcat –c 作用:清除logcat内容
# 重新启动app
adb logcat ActivityManager:i *:s
# 方式二:aapt(在adt-bundle-windows-x86_64-20140702\sdk\build-tools\android-4.4W)添加path
aapt dump badging C:\Users\zhuxu\Desktop\xxx.apk | find "launchable-activity"
# 方式三:
adb shell "logcat | grep START"
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
# 6. 查看apk的启动时间
冷启动:首次启动
冷启动命令:adb shell am start -W -n 包名/activity
冷启动停止:adb shell am force-stop 包名
热启动:应用切换到后台再次被唤起
热启动命令:adb shell am start -W -n 包名/activity
热启动停止:adb shell input keyevent 3
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
上次更新: 2021-05-10 14:08:54