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

后端 未结 5 608

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 17:07

    You can use dex2jar utility that will convert .dex to .jar.

    http://code.google.com/p/dex2jar/

    Then you can extract that .jar file.

    Also , you can use this framework

    Dedexer

提交回复
热议问题