I have used android - ndk - r8 and followed the LINK to create a .so library. Now my aim is to use this library in another project. Instead of copying the complete source there i just want to use the library. I tried to copy & paste the whole libs/armeabi/libAddition.so library to the project root of the another application but the app crashes when i use these library in other application. The library consists of simple addtion of two number logic.
NOTE Their is no error in application or the .so file and the error in error log is unsatisfiedlinkerror. Also i dont want to create a library project or anything else i just need to use these .so file in my another project.
So what would be the best way to do it? I am using Eclipse.