Dana
2025-11-30 386c7791c20c7a20a15d1ef2671772f822c8b9fe
1
2
3
4
5
6
7
8
9
10
11
12
#include <jni.h>
#include <string>
 
 
 
extern "C"
JNIEXPORT jstring JNICALL
Java_com_anyun_libusbcamera_UsbCamera_stringFromJNI(JNIEnv *env, jobject instance) {
 
    std::string hello = "Hello from C++";
    return env->NewStringUTF(hello.c_str());
}