Where are .dex files located after apk installatio

2019-02-24 08:26发布

问题:

After installation of apk file on android device, where exactly does the dex file get stored or what is done with dex?

Could any one please explain how the installation happens on android device?

回答1:

The apk file is a compressed archive (actually a .zip in disguise) containing all the files needed for your program. It is stored in the data/app folder. The dex files are contained in this archive, which you can extract with any unzip tool.



回答2:

dex files are located in the /data/dalvik-cache folder.