0
Android Studio 0.3.1

你好,

我有以下用 C 编写的库,但没有它的源代码,只有 libapp_module.so

libapp_module.so: ELF 32-bit LSB shared object, ARM, version 1 (SYSV), dynamically linked (uses shared libs), not stripped

我有这个库的头文件:

#ifdef __cplusplus
extern "C" {
#endif

#ifdef _WIN32
#define LIB_API(type) __declspec(dllexport) type
#else 
#define LIB_API(type) type
#endif

LIB_API(int) module_init();

#ifdef __cplusplus
}
#endif

问题是当我尝试从我的 Android 应用程序调用该函数时出现异常:

D/dalvikvm﹕ Added shared lib /data/app-lib/com.sunsystems.snaptest-1/libapp_module.so 0x416f3d88
D/dalvikvm﹕ No JNI_OnLoad found in /data/app-lib/com.sunsystems.snaptest-1/libapp_module.so 0x416f3d88, skipping init
W/dalvikvm﹕ No implementation found for native Lcom/sunsystems/snaptest/App_Module;.module_init:()I
UnsatisfiedLinkError: Native method not found: com.sunsystems.snaptest.App_Module.module_init:()I

这就是我正在做的

我创建了一个 Android 应用程序,我想从我的应用程序中调用那个 module_init(),所以我创建了一个名为 App_Module.java 的类

public class App_Module {
    /* Load native C libraries */
    static {
        System.loadLibrary("app_module");
    }

    public native static int module_init();
}

我在项目的根目录中使用了这样的 JNI:

javah -jni -classpath build/classes/debug -d jni/ com.sunsystems.snaptest.App_Module

其中生成了以下头接口:

/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class com_sunsystems_snaptest_App_Module */

#ifndef _Included_com_sunsystems_snaptest_App_Module
#define _Included_com_sunsystems_snaptest_App_Module
#ifdef __cplusplus
extern "C" {
#endif
/*
 * Class:     com_sunsystems_snaptest_App_Module
 * Method:    module_init
 * Signature: ()I
 */
JNIEXPORT jint JNICALL Java_com_sunsystems_snaptest_App_Module_module_1init
  (JNIEnv *, jclass);

#ifdef __cplusplus
}
#endif
#endif

然后在我的 Android 应用程序中,我在上面的 App_Module 类中加载库并像这样调用它:

App_Module.module_init()

所以我猜它在 libapp_module.so 库中找不到符号。

非常感谢您的任何建议,

4

1 回答 1

1

您必须实现本机方法并使其调用库中的函数。例如:

#include "header_file_for_your_library.h"

#include "com_sunsystems_snaptest_App_Module.h"

JNIEXPORT jint JNICALL Java_com_sunsystems_snaptest_App_Module_module_1init(JNIEnv *env, jclass klass) {
    return module_init();
}

几乎任何关于 JNI 或 Android NDK 的教程都会有更多详细信息。

于 2013-10-25T13:55:51.637 回答