I am running the project with based on Two library projects which have libs/armeabi folders
with corresponding .so files. But when I am running the project, it compiles one .so files and other .so is file not correclty pointed. So I am getting UnsatifiedLinkError.
This is project structure:
LibProjectA
+libs/armeabi/a.so
LibLibProjectB
+libs/armeabi/b.so
MainProject
- it loads
a.so
file successfully - but failes to load
b.so
file
- it loads
It does works when I copy the a.so file as LibLibProjectB/libs/armeabi/a.so
Can you please anyone help me on this issue ?
Thanks in Advance