I'm trying to parse a file dex, I have written the Java code to get information about:
- List item
- header
- string_ids
- type_ids
- proto_ids
- field_ids
- method_ids
- class_defs
simply with the byte shift based on the size of the individual fields.
Now I want to get the bytecode then the source code, the dex file in question.
Maybe this information can be found in the structure "code_item"?
If so, at what point do I block of memory to be able to read it.
Thanks in advance!