From 33d14ac3fa37e2983fcecb0b040fa177fcbe899d Mon Sep 17 00:00:00 2001 From: strawmanbobi Date: Tue, 7 Oct 2025 18:48:12 +0800 Subject: [PATCH] formalized JNI library name --- decoder/jni/java/net/irext/decode/sdk/IRDecode.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/decoder/jni/java/net/irext/decode/sdk/IRDecode.java b/decoder/jni/java/net/irext/decode/sdk/IRDecode.java index ab5eef2..a2c3875 100644 --- a/decoder/jni/java/net/irext/decode/sdk/IRDecode.java +++ b/decoder/jni/java/net/irext/decode/sdk/IRDecode.java @@ -56,7 +56,7 @@ public class IRDecode { } private IRDecode() { - String libPath = "/data/irext/libirda_decoder.so"; + String libPath = "/data/irext/libir_decoder.so"; System.out.println("loading decode library " + libPath); System.load(libPath); }