打开命令行窗口, 执行 adb devices -l
命令来列出连接在电脑上的安卓设备。
C:\Users\Administrator>adb devices -l
adb server version (31) doesn‘t match this client (41); killing...
* daemon started successfully
List of devices attached
e9956a15 unauthorized transport_id:1
adb connect 127.0.0.1:62001
如果你应用已经安装在手机上了,可以直接打开手机上该应用,进入到你要操作的界面
然后执行
adb shell dumpsys activity recents | find "intent={"
其中第一行就是当前的应用,我们特别关注最后
cmp=tv.danmaku.bili/.ui.splash.SplashActivity
应用的package名称就是 tv.danmaku.bili
应用的启动Activity就是 .ui.splash.SplashActivity
androidsdk\build-tools\29.0.3\aapt.exe 运行对应目录
D:\develop_study\androidsdk\build-tools\29.0.3\aapt.exe dump badging D:\bili.apk | find "package: name="
D:\develop_study\androidsdk\build-tools\29.0.3\aapt.exe dump badging D:\bili.apk | find "launchable-activity: name="
包名可以省略。
Appium学习_01(连接、apppackage名查询、appactivity名查询)
原文:https://www.cnblogs.com/chenfei2928/p/12618617.html