I am doing a wrapper which can be used in android (b4a library) and as there is a x86 native .so file available i thought it should work in b4j too.
The libtdjni.so is in the jar file unter {tdl4j.jar}\lib\x86
I get an error when running
Do i need to place them in another directory?
The libtdjni.so is in the jar file unter {tdl4j.jar}\lib\x86
I get an error when running
main._process_globals (java line: 144)
java.lang.UnsatisfiedLinkError: no tdjni in java.library.path
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1867)
at java.lang.Runtime.loadLibrary0(Runtime.java:870)
at java.lang.System.loadLibrary(System.java:1122)
at de.donmanfred.TDLApiwrapper.<clinit>(TDLApiwrapper.java:50)
at b4j.example.main._process_globals(main.java:144)
at b4j.example.main.initializeProcessGlobals(main.java:131)
at b4j.example.main.start(main.java:35)
at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$161(LauncherImpl.java:863)
at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$174(PlatformImpl.java:326)
at com.sun.javafx.application.PlatformImpl.lambda$null$172(PlatformImpl.java:295)
at java.security.AccessController.doPrivileged(Native Method)
at com.sun.javafx.application.PlatformImpl.lambda$runLater$173(PlatformImpl.java:294)
at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
at com.sun.glass.ui.win.WinApplication.lambda$null$147(WinApplication.java:177)
at java.lang.Thread.run(Thread.java:748
Do i need to place them in another directory?