Odex文件与dex文件

发布于 2024-12-03 13:43:01 字数 168 浏览 2 评论 0原文

我很想知道odex文件和dex文件之间的区别。我在网上搜索但没有找到足够的信息。这是我的问题

  1. odex 文件的用途是什么?
  2. 如何为我的应用程序创建odex文件?
  3. 如果我创建 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

  1. What is the purpose of odex file?
  2. How can create odex file for my application?
  3. If I create odex, will it be supported on all API levels?

Thanks,
Manan

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

奢欲 2024-12-10 13:43:01
  1. 这是一个应用程序优化代码
  2. 您可以在设备上执行此操作,您需要命令行 dexopt-wrapper 并运行类似 dexopt-wrapper 的东西
  3. ,但您不必创建 odex 文件,系统会自行完成此操作。好吧,取决于您实际想要实现的目标。
  1. It's an app optimized code
  2. You can do that on the device, you'll need the command line dexopt-wrapper and running something like dexopt-wrapper
  3. Yes, but you don't have to create odex files the system does that by itself. Well, depends what you want to achieve actually.
世态炎凉 2024-12-10 13:43:01

这是我对问题二的回答:

如何为我的应用程序创建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.

enter image description here

时间海 2024-12-10 13:43:01

不确定如何重新创建 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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文