I\'m using PDE to run a Processing sketch, and I get the following error:
Verify that the java.library.path property is correctly
java.library.path
Your library.path is fine, what you need to do is to drop prefix lib and suffix .so from your System.loadLibrary( "..." ). On Linux or "linux-android" those will be automatically added by JVM.
library.path
lib
.so
System.loadLibrary( "..." )