I'm trying use JavaCPP and trying to build the project in Eclipse. However, I encounter java.lang.UnsatisfiedLinkError
when I try to make a call from my Java class to a C++ function.
I have also tried the command
java -jar libs/javacpp.jar -classpath bin/ -classpath bin/classes/ -properties android-arm -Dplatform.root= -Dcompiler.path= -d libs/armeabi/
with appropriate values filled in the blanks) that is mentioned in the README file that comes along with JavaCPP project. These things have been in vain until now. Please let me know if I'm missing something very obvious or something major. And even though java.library.path
has been set to the appropriate value, the value is not read by the command line.
Thanks