Can someone guide me on the correct placement of where *.so files are supposed to be housed for a gradle/android project?
I have them in:
project->app->src->main->jniLibs
and the assets, java, and res folders are siblings to it in main as well but they don't seem to be included when the APK is built causing an 'UnsatisfiedLinkError'
EDIT
I have looked at:
Include .so library in apk in android studio
and have tried changing the director to both libs and lib with no luck.
UPDATE 1
- The APK de-compiled now shows the *.so files under /Lib and I have them under project -> app -> src -> main -> jniLibs -> armeabi and that is their architecture but I am getting an UnsatisfiedLinkError when calling a method from within the native library although it seems to get past the System.loadLibrary call in the static constructor without showing an error