Understanding disassembly of Dalvik code?

前端 未结 2 2138
孤街浪徒
孤街浪徒 2021-02-10 07:26

I am playing around with smali and baksmali on a small Hello World Android application I have written. My source code is:

package com.hello;

import android.app.         


        
2条回答
  •  攒了一身酷
    2021-02-10 07:44

    The opcode specification only describes the instructions. The dex file format is more than that - it contains all the metadata needed for the Dalvik VM (and the disassembler) to interpret the file - strings, classes, types, methods and so on. See also the official opcode spec, it's more complete and verbose than the one you linked.

    BTW, the next version of IDA Pro will support disassembly of .dex files

提交回复
热议问题