Is there a way to get a list of all classes from a .dex file?

后端 未结 5 611

I have a .dex file, call it classes.dex.

Is there a way to \"read\" the contents of that classes.dex and get a list of all class

5条回答
  •  南笙
    南笙 (楼主)
    2021-01-30 16:55

    baksmali has functionality to do this starting in baksmali v2.2.

    baksmali list classes my.dex will print a list of all classes in the given dex file.

    Reference: It is downloadable from here: https://github.com/JesusFreke/smali.

提交回复
热议问题