签名的 Android APK 文件是否可以在 x86 和 ARM-Android 设备上运行?

发布于 2024-08-16 08:54:21 字数 167 浏览 2 评论 0原文

Android APK 文件不是二进制文件,而是字节码文件。那么是否可以在 x86 Android 设备和 ARM Android 设备上安装相同的 APK 文件? 有一些计划安装 Android 的 x86 上网本,我想知道是否可以在这两种设备上运行 APK 文件?

最好的问候,

汤姆

Android APK-Files are not binaries but byte-code-files. So is it possible to install the same APK-File on both - on x86-Android-Devices and ARM-Android-Devices?
There are some x86-Netbooks with Android installed planned and I wonder if it is possible to run the APK-Files on both kinds of devices?

Best regards,

Tom

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

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

发布评论

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

评论(2

别在捏我脸啦 2024-08-23 08:54:21

是的,这些设备将运行 x86 版本的 dalvik vm,因此您的应用程序就应用程序本身而言运行得很好,如果需要 GPS 或其他基于手机的类等内容,它可能无法运行。

Yup, these devices will run an x86 version of the dalvik vm so your application will run just fine with respects to the application itself, it may not run if it needs stuff like GPS,or other cellphone based classes.

梦言归人 2024-08-23 08:54:21

实际上,Android APK 文件实际上是 ZIP 存档。它们包含 XML、艺术文件、Java 和二进制(本机)代码。如果您的应用程序完全用 Java 编写,那么它将在 Android 运行的任何 CPU 上运行。如果您有特定于 cpu 的二进制代码(例如使用 NDK 生成),那么它将仅在目标 cpu 上运行。

Actually, Android APK files are really ZIP archives. They contain the XML, art files, Java and binary (native) code. If your app is written entirely in Java then it will work on whatever CPU Android is running on. If you have cpu-specific binary code (e.g. generated with the NDK), then it will only run on the target cpu.
L.B.

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