Reading Activity names from apk file in Android

后端 未结 4 1952
渐次进展
渐次进展 2020-12-31 14:59

I want to extract all the activities names from an android apk file. Any idea how possibly it can be done?

Thanx Kaps

4条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-31 15:24

    If you just want to list them from the command line you can use

    aapt dump xmltree  AndroidManifest.xml
    

    The format is a bit perplexing at first, but all the info is there.

    You need the Android SDK installed to do this, of course.

提交回复
热议问题