Where are .dex files located after apk installation?

妖精的绣舞 提交于 2019-12-19 23:23:39

问题


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.



来源:https://stackoverflow.com/questions/6760720/where-are-dex-files-located-after-apk-installation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!