I would like to know if it is possible to use both X86 and ARM libraries at the same time when running my application on X86 android platform?
My problem is as follows: I have one application to create for x86 android platform. I have 2 shared libraries (lib1.so and libthirdparty.so) Lib1.so is compiled for x86 for performance reasons. Libthirdparty.so is a library compiled for ARM I cannot recompile it because it comes from a third party.
Lib1.so must call libthirdparty.so. How CAN I do please? (if both libraries are ARM it works well with houdini emulator on x86 platform, but in my case I mix 2 different architecture and I don't how it could work, or at least if it is just possible)