Pretty much exact duplicate of Add a native lib to an APK. Since there is no answers I decided to ask again.

I have an Android project. I have an .so library built with android NDK. And I want to use this .so in my project, preferrably - without using NDK.

So, how do I tell Eclipse (or Android tools) that I need certain .so to be built into my APK?

link|improve this question

I think this link will help u to find ur answer. – himanshu Nov 28 '11 at 12:47
1  
Please don't add tags to your question title, thats what the normal tags are for. – alextsc Nov 28 '11 at 12:58
@alextsc: it's not a tag, it's a word that clearly specifies the context of the question and makes the title more clear, what's wrong with that?.. – Violet Giraffe Nov 28 '11 at 13:01
It's redundant: The title says it's an android question. The primary tag says the same. Also try to browse the android tag with lots of these titles, the list looks like "Android: X", "Android: Y", "Android: Z". It's just unneccessary and anoying when browsing for a question to answer by scanning the titles. – alextsc Nov 28 '11 at 13:03
@alextsc: Now I see your reason, thanks for explaining. – Violet Giraffe Nov 28 '11 at 13:08
feedback

1 Answer

up vote 1 down vote accepted

It's actually easier than I expected. All I had to do is place the .so in libs/armeabi-v7a - Eclipse saw it and integrated into APK.

However, I've made this project by copying from another Eclipse project, which was actually building this .so from source. So, I think there were some settings that I would otherwise need to set. Feel free to add corrections or edit my answer!

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.