Problem:
I am building Android app in Eclipse which uses shared lib libgstreamer-0.10.so
(GStreamer-android NDK Bundle libs compiled for android-8 platform). I made new folder libs/armeabi
in project root folder and put it there. Also, I have put all other libs that came with it (158 of them) in the same folder. If I put this in my main activity code:
static{
System.loadLibrary("gstreamer-0.10");
}
And build/install/run my app on Android-8 emulator, it throws this error:
06-15 21:54:00.835: E/AndroidRuntime(402): Caused by: java.lang.UnsatisfiedLinkError: Cannot load library: link_image[1962]: 33 could not load needed library 'libglib-2.0.so' for 'libgstreamer-0.10.so' (load_library[1104]: Library 'libglib-2.0.so' not found)
Now, libglib-2.0.so
is in the same folder as libgstreamer-0.10.so
, and why is it not loaded? I get that linker tries to load it from /system/lib
and libglib-2.0.so
just is not there, but why is it not loading it from the location where libgstreamer-0.10.so
is?
So I went to discover which libs libgstreamer-0.10.so
depends on with this command:
arm-linux-androideabi-readelf -d libgstreamer-0.10.so
Results:
Dynamic section at offset 0x118b64 contains 29 entries:
Tag Type Name/Value
0x00000001 (NEEDED) Shared library: [libglib-2.0.so]
0x00000001 (NEEDED) Shared library: [libgobject-2.0.so]
0x00000001 (NEEDED) Shared library: [libgthread-2.0.so]
0x00000001 (NEEDED) Shared library: [libgmodule-2.0.so]
0x00000001 (NEEDED) Shared library: [libdl.so]
0x00000001 (NEEDED) Shared library: [libm.so]
0x00000001 (NEEDED) Shared library: [libstdc++.so]
0x00000001 (NEEDED) Shared library: [libc.so]
0x0000000e (SONAME) Library soname: [libgstreamer-0.10.so]
0x00000010 (SYMBOLIC) 0x0
First four libglib-2.0.so, libgobject-2.0.so, libgthread-2.0.so, libgmodule-2.0.so
are all located in the same folder libgstreamer-0.10.so
is located in (/data/data/com.marko.gstreamer_test/lib
) on the device.
Logical solution:
So, I tried to load these four libs before I load libgstreamer-0.10.so
and, it worked:
static{
System.loadLibrary("glib-2.0");
System.loadLibrary("gthread-2.0");
System.loadLibrary("gobject-2.0");
System.loadLibrary("gmodule-2.0");
System.loadLibrary("gstreamer-0.10");
}
My questions are:
Can I somehow tell the linker to load libs also from the app location? Like add path to some environment variable or something... similar to PATH on Linux.
Does my solution have some bad side-effects? I mean, linker would do this also before it loads the libgstreamer-0.10.so. But will this make any problems?
Can I install my libs to /system/lib folder on unrooted device?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…