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