native-lib-loader icon indicating copy to clipboard operation
native-lib-loader copied to clipboard

Native library loader for extracting and loading native libraries from Java.

Results 10 native-lib-loader issues
Sort by recently updated
recently updated
newest added

I am trying to work with a native library which depends on another (native) library. But only the "toplevel" library gets extracted, and therefore the whole load fails. Is there...

This is not only more efficient, but in my case also causes mysterious crashes when later executing the library.

### Summary The `native-lib-loader` should allow specifying a library in a static location for edge-case scenarios, usually imposed by security restrictions, constraints or sandboxing. **Edit:** Static locations may also offer...

Do you have android support ?

I might add one or another pull request at a later time which will sort out the folder names (retaining compatiblity, of course). ## Standard path name proposal Somethink like...

For my native library, I need to extract some native dependencies and I wanted to use `NativeLoader.extractRegistered()` for that. I put all of them into a jar and listed the...

Hello folks, I/we are trying to reboot the this library, the idea is to unify a lot of different leaf/sparse conventions all together for handling natives for the whole cycle,...

The JNI specification requires that the classloader of the caller of System.loadLibrary be the same classloader of the class attempting to consume the native methods. Since native-lib-loader tends to be...

In the method: BaseJniExtractor#extractJni , you retried to load resource with altLibName to adapt Darwin "jnilib or dylib" suffix. Lib Resource was loaded with libraryJarClass.getClassLoader on first time, but tried...