在我的 Android 应用程序中,我有 4 个库:
libTemplate.so
depends on libPorkholt.so
libPorkholt.so
depends on libpng15.so
depends on liblua.so
depends on libopenal.so
libpng15.so
liblua.so
libopenal.so
如果我编写一个与 libTemplate 链接并手动调用 ANativeActivity_onCreate 的小型命令行可执行文件,它会链接并运行得很好(如果我将 LD_LIBRARY_PATH 指向 /data/data/com.mycompany.Template/lib)
如果我运行我的应用程序,我会收到这个非常有用的错误消息:
E/AndroidRuntime(13214): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.mycompany.Template/android.app.NativeActivity}: java.lang.IllegalArgumentException: Unable to load native library: /data/data/com.mycompany.Template/lib/libTemplate.so
它甚至没有输入 ANativeActivity_onCreate,所以我唯一的猜测是它与链接有关
我可能应该提到我正在使用带有这个脚本的 CMake:http ://code.google.com/p/android-cmake/来自己构建库(没有 ndk-build)。我设法用它编译了本机活动示例,所以我知道它有效。
另外,我确保没有库在其 soname 中包含版本号
我的清单:
<?xml version="1.0" encoding="utf-8"?>
<!-- BEGIN_INCLUDE(manifest) -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mycompany.Template"
android:versionCode="1"
android:versionName="1.0">
<!-- This is the platform API where NativeActivity was introduced. -->
<uses-sdk android:minSdkVersion="9" />
<!-- This .apk has no Java code itself, so set hasCode to false. -->
<application android:label="Template Porkholt project" android:hasCode="false">
<!-- Our activity is the built-in NativeActivity framework class.
This will take care of integrating with our NDK code. -->
<activity android:name="android.app.NativeActivity"
android:label="Template Porkholt project"
android:configChanges="orientation|keyboardHidden">
<!-- Tell NativeActivity the name of or .so -->
<meta-data android:name="android.app.lib_name"
android:value="Template" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
<!-- END_INCLUDE(manifest) -->