Files
smartservice_mobile/hdssa/app/src/main/cpp/native-lib.cpp
T
2026-05-20 03:09:26 +09:00

10 lines
263 B
C++

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