JAR file compiled on IntelliJ not working in Android Studio
My Java application imports the Xerial SQLite JDBC library v3.43.0.0 to perform some CRUD functions, and it works as expected. However, I want to export this class as a JAR file and use it in my Android mobile app. The basic functionalities of the JAR file appear to work as expected after being imported into the Android app. However, SQLite functions fail with this error:
java.lang.UnsatisfiedLinkError: dlopen failed: library "libsqlitejdbc.so" not found
SQLite CRUD functions work correctly...