Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm fairly new to Android development and I've been trying for a while now but I just don't get it. I'm writing an app for android that creates gifs, and for that I'm using this library. I compiled it into an .so but now I just don't understand how to actually load it. I put the .so in /libs/armeabi/ but when I load it like

    static {
        System.loadLibrary("gifflen");
    }    

it throws

   ERROR/AndroidRuntime(13565): Caused by: java.lang.UnsatisfiedLinkError: Couldn't load gifflen: findLibrary returned null

Am I supposed to put it somewhere else? Or is this because of some setting in Eclipse I was supposed to change? I've mucked about with the native library option in Java Build Path but that doesn't seem to be what I'm looking for. I've also googled around a bit and found an answer that said to select select Android Tools->Add Native Support but I don't have that option.

share|improve this question

2 Answers

up vote 11 down vote accepted

You built into into an .so how? Using the NDK? If so then the file that was created should have been called libgrifflen.so. Was it?

share|improve this answer
THANK YOU. I renamed it to gifflen.so from libgifflen.so for some silly reason. I didn't think that it would matter. – Dmitry Narkevich May 23 '11 at 3:50
Godlike !! worked for me too !! :D – Chaitanya Chandurkar Aug 25 '12 at 7:40
"You built into into an .so how?" Can you repeat it in english please. – Vladp Jan 13 at 15:26
2  
"How did you build it into an .so?" I was asking what tools he used in order to build the .so. – CaseyB Jan 13 at 18:11

Substantially, you need to tell the system that such library exists and where it is located. This is done inside Eclipse by right-clicking on the project name and then selecting "Android Tools" and then "Add Native Support". If the project already has Native Support, this option is not present - if you are a beginner it is better that you create a new project from scratch.

share|improve this answer
3  
sorry, I've faced this problem, but I can't find Add "Native Support" there. – Keyhan Asghari Jun 13 '12 at 17:50
Oh dear good God! This is really good sh*t! I must have read all existing posts on UnsatisfiedLinkError when I came across your answer and it was good. – dbm Dec 17 '12 at 18:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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