Skip to content

Instantly share code, notes, and snippets.

@tuoxie007
Created April 22, 2014 08:05
Show Gist options
  • Save tuoxie007/11169463 to your computer and use it in GitHub Desktop.
Save tuoxie007/11169463 to your computer and use it in GitHub Desktop.
android-jni-call-method-in-java
jclass native_class = (*env)->GetObjectClass(env, this);
jmethodID method_decodedFrame = (*env)->GetMethodID(env, native_class, "decodedFrame", "([I)V");
(*env)->CallVoidMethod(env, this, method_decodedFrame, result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment