Skip to content

Instantly share code, notes, and snippets.

@LiewJunTung
Last active January 27, 2018 15:19
Show Gist options
  • Save LiewJunTung/00188542a9422679a250a8e7b8166129 to your computer and use it in GitHub Desktop.
Save LiewJunTung/00188542a9422679a250a8e7b8166129 to your computer and use it in GitHub Desktop.
JNIEXPORT jstring JNICALL Java_com_example_app_MainActivity_native_say_hello_world(JNIEnv* env, jobject thiz ) {
std::string hello = "Hello from C++";
return env->NewStringUTF(hello.c_str());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment