Hi am working on including a shared object file onto the android OS image through the NDK project.

the android.mk file looks like this

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_MODULE := Myaccessories
LOCAL_SRC_FILES := libMyaccessories.so

include $(PREBUILT_SHARED_LIBRARY)

and i have added the "libMyaccessories.so" to the jni folder where the android.mk is located. On ndk-built, it results in error which is as below

Prebuilt       : libMyaccessories.so <= jni/
Install        : libMyaccessories.so => libs/armeabi/libMyaccessories.so
/home/Identive/Desktop/android-ndk-r7/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin/arm-linux-androideabi-strip: Unable to recognise the format of the input file `./libs/armeabi/libMyaccessories.so'
make: *** [libs/armeabi/libMyaccessories.so] Error 1

Kindly help me if anyone have come across this problem or suggest me with some other methods.

link|improve this question

50% accept rate
FYI xyz.so is not and shared object file. xyz.so ir shared library. object file is xyz.o file. – Mārtiņš Možeiko Feb 9 at 19:20
then how about adding the shared library file ??? – Britto Feb 10 at 5:55
Lawrence below has written what to do. – Mārtiņš Možeiko Feb 10 at 6:56
feedback

1 Answer

Just put the .so file in your libs/armeabi/ subdirectory, and it should automatically be included as part of your build. Don’t mention it in LOCAL_SRC_FILES, as it’s not a source file.

If that library is being referenced from native code, not just Java code, you may need to list it in LOCAL_LDLIBS, but I’d be very surprised if this isn’t the default.

link|improve this answer
yet changing the android.mk file, ndk-build throws "Unable to recognize the input format" kindly help me the android.mk file – Britto Feb 10 at 4:13
Then your file is not really shared library for ARM. Where did you get your shared library from? – Mārtiņš Možeiko Feb 10 at 6:57
feedback

Your Answer

 
or
required, but never shown

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