android应用程序作为系统应用程序安装时找不到jni库

发布于 2025-01-08 10:36:55 字数 199 浏览 0 评论 0原文

最近我遇到这样的问题,当我在android应用程序中使用jni时,当构建apk时,test.so被放入apk包中的lib/armeabi/中,当我将此apk安装为用户应用程序时,它可以运行并找到使用 System.LoadLibrary() 查找库时。当我将其安装在 system/app 中时,它找不到该库。任何人以前遇到过这样的问题,你能告诉我如何解决这个问题,非常感谢你的建议。

recently I meet such problem, when I use jni with android application , when the apk is built , the test.so is put in lib/armeabi/ in the apk package , when I install this apk as user application , it can run and find the library when use System.LoadLibrary() to find it . while when I install it in system/app , it can't find the library . anyone meet such kind of problem before and could you tell me how to solve this , thanks very much for any suggestions .

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

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

发布评论

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

评论(1

不顾 2025-01-15 10:36:55

Android NDK 组上的这个答案似乎有您的答案:

http://groups.google.com/group/android-ndk/browse_thread/thread/bfceac612dceae8c/7f2b8b48a87c2a52?show_docid=7f2b8b48a87c2a52

简而言之,您似乎无法执行此操作,因为 /system 被安装为只读,这意味着您的 APK+库已在工厂安装。

This answer on the Android NDK group seems to have your answer:

http://groups.google.com/group/android-ndk/browse_thread/thread/bfceac612dceae8c/7f2b8b48a87c2a52?show_docid=7f2b8b48a87c2a52

In a nutshell it looks like you cannot do it because /system is mounted read-only which means that you the APK+library are installed in the factory.

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