In android, I want to make a single .so file from multiple other .so files.
Example like i have libtest.so which depends on several other .so files (lie liba.so, lib.so),
So instead of linking them at runtime, i want to create a single static file from these dependent .so files.
Finally i will load .so from my android app so that it will run without need of runtime support of these libraries.
Any body have idea about that.
Thanks,