Описание тега unsatisfiedlinkerror

This Java error is observed when either the library wasn't found or the library exists but couldn't be opened.

Common reasons why people might encounter "library not found" exceptions:

  • The library doesn't exist or isn't accessible to the app.
  • The library isn't getting loaded.
  • The method isn't being found due to a name or signature mismatch.
  • The library wasn't built with the NDK. This can result in dependencies on functions or libraries that don't exist on the device.

Source: Why do I get UnsatisfiedLinkError?