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
Android AAR now bundles its JNI native libraries (#446). The published io.xberg:html-to-markdown-android AAR previously shipped no .so files, crashing every consumer at runtime with UnsatisfiedLinkError: library "libhtm_jni.so" not found. The publish workflow built the wrong crate (the C-FFI html-to-markdown-ffi) and uploaded it from a path the build action never wrote. It now builds the JNI crate (html-to-markdown-rs-jni → libhtm_jni.so) and stages it per ABI, with a regenerated Gradle guard that fails the build if a correctly-named lib*_jni.so is missing.
Changed
Android AAR now ships four ABIs: arm64-v8a, x86_64, armeabi-v7a, x86.