Building Android with .so

I think you need to add the library to the dynamicLibs field in your extension manifest to be able to link against it. Otherwise, you might still be able to use the library with dlopen() / dlsym(), but that’s a hassle. Also, you’ll need to place the same shared library in the res/armv7-android/lib/armeabi-v7a/ directory, so that it’s bundled in the APK.

1 Like