corrected jni loader and uploaded the latest web app package

This commit is contained in:
strawmanbobi
2025-10-22 12:37:19 +08:00
parent 136146d49e
commit 2eff82e48b
7 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ Private server is a runtime that any user can deploy and access it with IRext re
- A Linux OS is preferred - A Linux OS is preferred
### Deploy ### Deploy
- Fetch or compile libirda_decoder.so out of source code of irext/core. - Fetch or compile libirdecode_jni.so out of source code of irext/core.
- Run following command when you fetched or compiled the private-server.jar out of the private server Spring-Boot project. - Run following command when you fetched or compiled the private-server.jar out of the private server Spring-Boot project.
```shell script ```shell script

Binary file not shown.

Binary file not shown.

View File

@@ -54,7 +54,7 @@ public class IRDecode {
} }
private IRDecode() { private IRDecode() {
String libPath = "/data/irext/libir_decoder.so"; String libPath = "/data/irext/libirdecode_jni.so";
LoggerUtil.getInstance().trace(TAG, "loading server library " + libPath); LoggerUtil.getInstance().trace(TAG, "loading server library " + libPath);
System.load(libPath); System.load(libPath);
} }