Skip to content Skip to sidebar Skip to footer

Force App To Run 32 Bit Architecture For 64 Bit Devices?

I have an android app that has .so files in 32-bit architecture. I don't have native code for 2 .so files. I got some issues over my app so I have edited and tried to update in pla

Solution 1:

  1. There is no way to load and run 32-bit libs in 64-bit environment. Having libraries in arm64-v8a folder, you mark your app as 64-bit.

  2. Very soon Android may drop support for 32-bit libraries altogether, so if you want your app to last for more than few months, you have no choice but find alternative libraries that are built for arm64. Or maybe you can implement same logic in Java.

Post a Comment for "Force App To Run 32 Bit Architecture For 64 Bit Devices?"