Reputation: 998
Is there a tool to extract the header of Android .dex files? I am looking for a pedump like tool .dex file.
Thanks
Upvotes: 0
Views: 611
Reputation: 20292
You have a couple of options
baksmali. This produces an annotated binary dump of the dex file (including the header).
baksmali -N -D out.dump app.apk
dexdump. This provides a slightly higher level logical dump of the dex file (including most of the fields in the header)
dexdump -f app.apk
Upvotes: 1