I am doing this code in HelloWorld.c

#include "com_testndk_HelloWorld.h"

JNIEXPORT jstring JNICALL Java_com_testndk_HelloWorld_messageFromNativeCode (JNIEnv * env, jobject jObj)

{
return (*env)->NewStringUTF(env, "Hello World!");
}

It show me error on JNIEXPORT jstring and when i compile ndk then it show me this error enter image description here

有帮助吗?

解决方案

You need to include <jni.h>

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top