On a Android device with 64bit ARM, would have two variants of many libraries, 32bit and 64 bit, and their performance could be different. I want to know if there is a way to fo
ABI can be specified when the apk is installed.
adb install --abi
In case ARM device,
To run in 32 bit mode install using,
adb install --abi armeabi-v7a
To run in 64 bit mode install using,
adb install --abi arm64-v8a