Odex文件与dex文件
我很想知道odex文件和dex文件之间的区别。我在网上搜索但没有找到足够的信息。这是我的问题
- odex 文件的用途是什么?
- 如何为我的应用程序创建odex文件?
- 如果我创建 odex,所有 API 级别都支持它吗?
谢谢, 马南
I am curious to know the differences between odex file and dex file. I searched on net but did not find enough information.Here are my questions
- What is the purpose of odex file?
- How can create odex file for my application?
- If I create odex, will it be supported on all API levels?
Thanks,
Manan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是我对问题二的回答:
如何为我的应用程序创建odex文件?
“classes.dex”文件自动优化为odex文件。如果“xxx.apk”存储在
/data/app/xxx/xxx.apk
中,则其“xxx.odex”将存储在/data/app/xxx/oat/arm 中/xxx.odex
。我在安卓6.0上测试过。
Here's my answer for question two:
How can create odex file for my application?
The "classes.dex" file is optimized to odex file automatically. If "xxx.apk" stores in
/data/app/xxx/xxx.apk
, then its "xxx.odex" will be stored in/data/app/xxx/oat/arm/xxx.odex
.I tested on Android 6.0.
不确定如何重新创建 odex 文件,但这里有一个描述。
http://www.addictivetips。 com/mobile/what-is-odex-and-deodex-in-android-complete-guide/
Not sure how to recreate an odex file, but here's a description.
http://www.addictivetips.com/mobile/what-is-odex-and-deodex-in-android-complete-guide/