native-lib.cpp 266 Bytes
#include <jni.h>
#include <string>

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