Hi everibody,
I have to do a porting from a Java project to Android project. I have a Java project (really a porting JNI from c/c++ sources).
I have a library .so , file .java, file .h, file .jar (include file .class linked .java).
File .java include calls to functions implemented inside cpp file (i suppose that cpp file is compiled to .so library)
My question is: How can I import these files so that the functionality of the Java project work within my Android project?
Thanks


