I am defining Application.mk APP_STL := stlport_shared

When I run ndk-build which in turn producing file: stlport_shared.so in obj/local/armeabi/ but it is not copying this file to libs/armeabi/ Because of which it doesn't get copied to the device and System.loadLibrary() throws UnsatisfiedLinkError.

Can anyone help?

link|improve this question

60% accept rate
feedback

3 Answers

up vote 1 down vote accepted

It should be mentioned in the Application.mk as: APP_MODULES := stlport_shared.so other_dependent.so

In ordered to be copied to the device.

link|improve this answer
It should be Without the .so prefix, though. – Fabio A. Dec 21 '11 at 14:34
feedback

I believe you need to include something like following in your Android.mk file:

include $(CLEAR_VARS)  
LOCAL_MODULE := stlport_shared  
LOCAL_SRC_FILES := stlport_shared.so  
include $(PREBUILT_SHARED_LIBRARY)  
link|improve this answer
No its not working this way. But Thanks for answering – Nishant Jun 16 '11 at 14:58
feedback

I had to add a line to my java file to load it:

System.loadLibrary("stlport_shared");
System.loadLibrary("my_lib");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.