本机 ABI 与包不匹配

发布于 2024-11-29 09:53:17 字数 369 浏览 3 评论 0原文

因此,我尝试使用 Android x86 和虚拟盒来调试我的应用程序。

我已成功将 hello world apk 部署到在 virtualbox 中运行的 Android x86。 (通过 adb vboxIP:5555 连接

所以接下来我尝试调试我的游戏:

当我这样做时,我在 logcat 中收到以下消息

Package has mismatched uid:10044 on disc, 10048 in settings
Native ABI mismatch from package file.

我的游戏包含 amreabi 包 (box2d)

有关如何解决此问题的任何想法吗?

So, I'm trying to use Android x86 and virtual box to debug my apps.

I've successfully deployed a hello world apk to the Android x86 running in virtualbox.
(connecting via adb vboxIP:5555

So next I tried to debug my game:

When I do so I get the following messages in logcat

Package has mismatched uid:10044 on disc, 10048 in settings
Native ABI mismatch from package file.

My game includes a amreabi package (box2d)

Any ideas on how to resolve this?

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

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

发布评论

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

评论(1

始终不够爱げ你 2024-12-06 09:53:17

对我来说,这是由于 Android NDK 内置到我的应用程序中而不是以 x86 兼容的方式引起的。 NDK 引用了 armeabi 内容的特定版本。我的答案很简单,就是删除 NDK/JNI,因为当前版本中没有使用它。显然,可以使用 x86 平台的 NDK 进行构建:http://developer。 android.com/sdk/ndk/index.html(请参阅修订版 6b 评论列表)。

For me this was caused by the Android NDK being built into my application and not in an x86 compatible way. NDK references a specific version of the armeabi stuff. My answer was as simple as removing NDK/JNI because it wasn't being used in the current version. Apparently, it is possible to build with the NDK for the x86 platform: http://developer.android.com/sdk/ndk/index.html (see the revision 6b comment list).

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