You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 22, 2020. It is now read-only.
UnsatisfiedLinkError is thrown with following stack trace:
Exception in thread "main" java.lang.UnsatisfiedLinkError: org.meteogroup.jbrotli.BrotliStreamCompressor.initJavaFieldIdCache()I at org.meteogroup.jbrotli.BrotliStreamCompressor.initJavaFieldIdCache(Native Method) at org.meteogroup.jbrotli.BrotliStreamCompressor.<clinit>(BrotliStreamCompressor.java:28) at xxx.Main.main(Main.java:59)
Possible cause:
jbrotli-native/src/main/cpp/org_meteogroup_jbrotli_BrotliStreamCompressor.cxx line 45
native code is trying to get ID of field which does not exist.
The text was updated successfully, but these errors were encountered:
When running this code
new BrotliStreamCompressor();
UnsatisfiedLinkError is thrown with following stack trace:
Exception in thread "main" java.lang.UnsatisfiedLinkError: org.meteogroup.jbrotli.BrotliStreamCompressor.initJavaFieldIdCache()I at org.meteogroup.jbrotli.BrotliStreamCompressor.initJavaFieldIdCache(Native Method) at org.meteogroup.jbrotli.BrotliStreamCompressor.<clinit>(BrotliStreamCompressor.java:28) at xxx.Main.main(Main.java:59)
Possible cause:
jbrotli-native/src/main/cpp/org_meteogroup_jbrotli_BrotliStreamCompressor.cxx line 45
native code is trying to get ID of field which does not exist.
The text was updated successfully, but these errors were encountered: