--
You received this message because you are subscribed to the Google Groups "tesseract-ocr" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tesseract-oc...@googlegroups.com.
To post to this group, send email to tesser...@googlegroups.com.
Visit this group at https://groups.google.com/group/tesseract-ocr.
To view this discussion on the web visit https://groups.google.com/d/msgid/tesseract-ocr/00471fc1-0811-40e9-8368-ea2edcd0f715%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Line 47 in TessBaseAPI.java: nativeClassInit();
In TessBaseAPI.java class, When I came over nativeClassInit() function, an error seems:
Cannot resolve corresponding JNI function Java_com_googlecode_tesseract_android_TessBaseAPI_nativeClassInit(),
Reports native method declarations in Java where no corresponding JNI function is found in the project.
But the function "nativeClassInit()" is defined in tessbaseapi.cpp:
void Java_com_googlecode_tesseract_android_TessBaseAPI_nativeClassInit(JNIEnv* env, jclass clazz) {
field_mNativeData = env->GetFieldID(clazz, "mNativeData", "J");
method_onProgressValues = env->GetMethodID(clazz, "onProgressValues", "(IIIIIIIII)V"); }