In our Android app we have two .so files: one for x86 and another for ARM. They are quite big and are increasing the size of the .apk from 7 MB to 11 MB.
Since .so files are run time entities they have to be inside the .apk files.
Is there any way I could reduce the size of .so files or use/build it in my .apk in a better way?
I got one point from here http://developer.sonymobile.com/2012/01/31/tips-for-reducing-apk-file-size/ i.e. to remove the debug symbols from native code.