I am new to NDK and learning.
I managed to call the native method from java code but don't know how can I compare two jbyte arrays
here is what I have:
jbyte bytes1[] = {48, -126, 1,4};
jbyte bytes2[] = {48, -126, 1,4};
jclass cls = (*env)->GetObjectClass(env, bytes1);
jmethodID mid = (*env)->GetMethodID(env, cls, "equals", "([B)Z");
jboolean isEqual = (*env)->CallBooleanMethod(env, bytes1, mid, bytes2);
I know above code is wrong but is there a correct way of comparing the byte arrays