Static lib cannot be loaded, it's not an executable module.
If your shared library depends on another shared library, you should
load that library first.
It cannot "depend" on static libs - static libs are just linked into
the shared lib. If the link process succeeded, the static lib was
successfully linked in.
--
You received this message because you are subscribed to the Google Groups "android-ndk" group.
To post to this group, send email to andro...@googlegroups.com.
To unsubscribe from this group, send email to android-ndk...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/android-ndk?hl=en.
regarding libssl.so and libcrypto.so
I've read about libexpat.so from /system/lib
"It is not officially exposed, so you will have to include your own
copy in your application. " - David Turner -
is it still true and also true for libssl and libcrypot ?
in that case I'll need t find out how to include them without been in
conflict with the system's ones...
Hi guys,
Going thru this thread, gives me the impression that I may find a clue to my plaguing problem! :)
I was able to build the mupdf library for android (libmupdf.so) and I got it working on the emulator. I have used the ndk: android-ndk-r5b & android-ndk-r4b, both work fine.
I have an app. that calls the mupdf library to read a PDF & save it as jpg files to the sdcard.
This works fine on the emulator (both 2.1 and 2.2) as well as on an Android 2.2 device API level 8 (LG Optimus).
However, on the Samsung Galaxy S (Android 2.1-update1 API level 7), the app installs fine, but on running, I'm getting the error :
ERROR/AndroidRuntime: Caused by: java.lang.UnsatisfiedLinkError: Library mupdf not found
I have tried building the library with ndk-r5b as well as prev. versions - ndk-r4, ndk-3 and ndk-r4b. There seems to be no change :(
Any ideas on what might be causing the error?!?! Any suggestions / help is appreciated.