質問

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