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.
