adb 和android开发常用命令
Posted danfengw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了adb 和android开发常用命令相关的知识,希望对你有一定的参考价值。
adb logcat -d time > 1.log
adb logcat | grep wdf
查看当前Activity :adb shell dumpsys window w | grep name=“”
查看当前栈顶的Activity :adb shell dumpsys activity | grep “mFocusedActivity”
查看当前栈顶的Activity的Fragment :adb shell dumpsys activity your.package.name
或者:adb shell dumpsys activity top
打印页面ui:adb shell uiautomator dump
打印操作路径:adb shell dumpsys activity activities | sed -En -e ‘/Running activities/,/Run #0/p’
查看依赖关系: ./gradlew app:dependencies >1.log
查看单独依赖(httpdns是被依赖的模块): ./gradlew -q app:dependencyInsight --dependency httpdns --configuration releaseRuntimeClasspath
以上是关于adb 和android开发常用命令的主要内容,如果未能解决你的问题,请参考以下文章