How do I package .so files into my .aar archive?(如何将 .so 文件打包到我的 .aar 存档中?)
问题描述
我想知道是否可以将我的原生 .so 文件打包到我的 .aar 文件中?如果是这样,.so 文件会去哪里,有没有我可以阅读的参考资料?
I was wondering if it's possible to package my native .so files into my .aar file? If so, where would the .so files go and are there any references that I can read in regards to this?
推荐答案
如果手动放的话,应该放在下面
If you put it manually, then it should be placed underneath
jni/<platform>/libexample.so
其中平台是目标 CPU 平台,例如armeabi"、x86"等.通常,您将在那里拥有多个平台的 so 文件.如果你使用 Gradle 从源代码构建,你可以简单地将你的原生源代码放到
where platform is a target CPU platform like "armeabi", "x86" etc. Typically you will have so-files for multiple platforms there. If you build from source code using Gradle you could simply put your native source code to
src/main/jni/
然后构建插件将完成剩下的工作.由于生成的 so-files 将自动构建并放置在它们所属的位置.
and build plugin will do the rest. As the resulting so-files will be built automatically and placed where they belong to.
关于参考资料,我在专门用于 Gradle 的 Android 构建插件的网站上的某处看到了这一点.从那以后,我再也找不到这个页面了.但是您可以查看插件的源代码以获取更多详细信息.
Regarding the references, I've seen this been mentioned somewhere on the site dedicated to Android build plugin for Gradle. Since then I wasn't able to find this page again. But you can check out plugin's source code for more details.
这篇关于如何将 .so 文件打包到我的 .aar 存档中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将 .so 文件打包到我的 .aar 存档中?
基础教程推荐
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01