从 Github 导入项目和 .so 文件问题

Importing a project from Github and .so file issue

我试过在 Eclipse 中导入一个 Github 的项目。以下是该项目的 link: https://github.com/matthill/darwinwallet

但是,当我尝试 运行 时出现以下错误。

10-18 16:51:37.100: E/AndroidRuntime(17728): Process: com.ndu.mobile.darwinwallet, PID: 17728
10-18 16:51:37.100: E/AndroidRuntime(17728): java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.ndu.mobile.darwinwallet-1/base.apk"],nativeLibraryDirectories=[/vendor/lib, /system/lib]]] couldn't find "libnative_wallet.so"

我对 .so 文件以及如何创建它们一无所知。如果您能提供有关如何执行此操作的分步说明(或为我的项目提供一个),将不胜感激。

谢谢。

缺少本机库。 您需要从 jni 文件夹中的源代码构建本机库。可以找到构建本机库的详细信息here