native-lib.cpp 266 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 #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()); }