10 lines
254 B
C++
10 lines
254 B
C++
|
|
#include <jni.h>
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
extern "C" JNIEXPORT jstring JNICALL
|
||
|
|
Java_com_zlm_rtc_NativeLib_stringFromJNI(
|
||
|
|
JNIEnv* env,
|
||
|
|
jobject /* this */) {
|
||
|
|
std::string hello = "Hello from C++";
|
||
|
|
return env->NewStringUTF(hello.c_str());
|
||
|
|
}
|