where is the jni wrapper
As well known, porting c/c++ library to android need two step, cross compile to achieve shared/static library and then write jni wrapper, which allow us to call c/c++ function with java code.
However, i could not find the jni code and native java function declaration in this repository, expect a little about mat in module/java/generator and also the python script gen_java.py.
So where is the jni wrapper code? is it generated by gen_java.py and then directly link to library ?
Thankful for any useful answers.