I’m working on a project that uses sqlite4java. In addition to the main jar, it also has native libraries (*.so, *.dll). When I run a build on my project and gradle executes my unit tests, I get the following UnsatisfiedLinkError:
com.almworks.sqlite4java.SQLiteException: [-91] cannot load library: java.lang.UnsatisfiedLinkError: no sqlite4java-linux-i386-0.282 in java.library.path
at com.almworks.sqlite4java.SQLite.loadLibrary(SQLite.java:97)
...
That definitely works. I’m just fighting with sqlite4java specific issues now, for some reason it’s still not able to find the native .so library even though it’s definitely in the location specified by the java.library.path property.
Unfortunately, I’ve since left the job where I was working on that project and haven’t touched gradle for over a year. Wish I could be of more help on this one. Hope you’re able to figure things out.