Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经构建了一个脚本,它是我开发的自动化工具的一部分,它需要打开一个 apk 并找到活动,以便它可以启动它。为此,我使用了:
aapt dump badging x.apk
哪个“应该”转储应用程序的活动。有时它有,有时它没有。是否有更可靠的方法来转储应用程序的活动,以便我的脚本可以获取活动并通过 adb 检测启动包?
您可以使用
$ aapt dump --values xmltree <name>.apk AndroidManifest.xml
然后您必须解析输出以找到活动。
请记住,如果您的意图是自动运行检测,您还必须在清单中找到检测。