I'm not quite sure what code is being loaded into the linux process on the Android platform.
If the Android accepts Dalvik, the process contains the Dalvik VM and the application code, is the code in the form of Dalvik bytecodes? If so, is the code the same as class.dex in the .apk file?
If the android uses Android Runtime (ART), since classes.dex was translated into its own native code, so I think that the application code in the Linux process will not be Dalvik bytecodes, but is native machine code. If my understanding is correct, is there a Dalvik VM universe in the process?
source
share