Where to put plugin .so files for Android builds?

A little bit more info:

spock:test7 jocke$ /usr/local/Cellar/android-ndk/r14/toolchains/arm-linux-androideabi-4.9/prebuilt/darwin-x86\_64/bin/arm-linux-androideabi-readelf -d app-debug7/lib/armeabi-v7a/libplugin.sodium.so | grep NEEDED  0x00000001 (NEEDED)                     Shared library: [libsodium.so]  0x00000001 (NEEDED)                     Shared library: [liblua.so]  0x00000001 (NEEDED)                     Shared library: [libcorona.so] spock:test7 jocke$ /usr/local/Cellar/android-ndk/r14/toolchains/arm-linux-androideabi-4.9/prebuilt/darwin-x86\_64/bin/arm-linux-androideabi-readelf -d app-debug7/lib/armeabi-v7a/libsodium.so | grep NEEDED  0x00000001 (NEEDED)                     Shared library: [libc.so]  0x00000001 (NEEDED)                     Shared library: [libdl.so] spock:test7 jocke$

/Joakim

Have you tried including the libc.so and libdl.so files too?

Hi,

I copied libc.so and libdl.so from the NDK toolchain to my android/app/libs/armeabi-v7a/ folder as well and the app still started as normal on the 7.x device but on the 6.x device it did not start at all. Not even an error popup dialog was generated as seen in the previous screenshot I attached. I will use adb to see what actually happens on the 6.x device in this case but I suppose it gets confused when there are local versions of libc.so and libdl.so in my android/app/libs/armeabi-v7a/ folder.

Cheers

/Joakim