app信息
获取当前界面元素:adb shell dumpsys activity top
获取任务列表:adb shell dumpsys activity activities
adb shell dumpsys activity activities top | less
app入口
adb logcat | grep -i displayed
aapt dump badging mobile.apk | grep launchable-activity
APK Analyzer(Android apk 分析工具)
启动应用
adb shell am start -W -n com.x.android/.veiw.WelcomActivity -S
-W 等待启动完成
-n 后跟包名
-S /关闭Activity所属的App进程后再启动Activity
网友评论