native-lib.cpp 262 字节
#include <jni.h>
#include <string>

extern "C" JNIEXPORT jstring JNICALL
Java_com_hh_xuetubao_MainActivity_stringFromJNI(
        JNIEnv* env,
        jobject /* this */) {
    std::string hello = "Hello from C++";
    return env->NewStringUTF(hello.c_str());
}