apk 安装后 .dex 文件位于哪里?
在Android设备上安装apk文件后,dex文件到底存储在哪里或者dex做了什么?
任何人都可以解释一下 Android 设备上的安装是如何进行的吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
dex 文件位于 /data/dalvik-cache 文件夹中。
dex files are located in the /data/dalvik-cache folder.
apk 文件是一个压缩档案(实际上是伪装的 .zip),其中包含程序所需的所有文件。它存储在 data/app 文件夹中。 dex 文件包含在该存档中,您可以使用任何解压缩工具提取该文件。
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.