51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

cmd命令集

# 1. 查看手机安装包的md5值 {#_1-查看手机安装包的md5值}

certutil -hashfile 安装包 MD5

# 2. 查看Log的安装包 {#_2-查看log的安装包}

adb logcat ->存放目录 

# 3. 查看当前运行的安装包名及运行界面 {#_3-查看当前运行的安装包名及运行界面}

adb shell dumpsys window | findstr mCurrentFocus

# 4. 查看当前包的版本信息 {#_4-查看当前包的版本信息}

adb shell dumpsys package com.calendar2345 | findstr version

# 5. 查看apk名的第一个launcher页面 {#_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" 

# 6. 查看apk的启动时间 {#_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
赞(0)
未经允许不得转载:工具盒子 » cmd命令集