Sign in
bazel
/
bazel
/
e12fb6357216bf3e228b5ff5347c2c2c0dc171b4
/
.
/
examples
/
android
/
java
/
bazel
/
jni.cc
blob: 7a6cf865e4ae23a722984597e62a3ba633f0a6b4 [
file
]
#include
<jni.h>
#include
"examples/android/java/bazel/jni_dep.h"
const
char
*
hello
=
"Hello JNI"
;
extern
"C"
JNIEXPORT jstring JNICALL
Java_bazel_Jni_hello
(
JNIEnv
*
env
,
jclass clazz
)
{
return
NewStringLatin1
(
env
,
hello
);
}