TL;DR: setprop persist.sys.force_32bit_install 1 to enable 32 bit support.
Tried to install a 32 bit app and got INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries. However, since eu rom has tango support, this is weird.
Then I decompiled framework.jar and services.jar and got a even more weird finding:
Over PackageAbiHelperImpl, there is a key method android.os.BUILD.isEnabled32BitTranslate which is
And android.os.BUILD.VERSION.DEVICE_INITIAL_SDK_INT returns property ro.product.first_api_level
On my device (15 Ultra), this property is 32, apparently <= 34, which means isEnabled32BitTranslate should have always returned true.... BUT that's not the case.
Only if I set persist.sys.force_32bit_install, can I install a 32 bit app as expected. This violates the code logic, so there must be something happened.
The only reason I come up with is that system_server gets a different ro.product.first_api_level from other processes (including shell and root user). This is still VERY WEIRD.
Hoping anyone can continue my investigation.
Tried to install a 32 bit app and got INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries. However, since eu rom has tango support, this is weird.
Then I decompiled framework.jar and services.jar and got a even more weird finding:
Over PackageAbiHelperImpl, there is a key method android.os.BUILD.isEnabled32BitTranslate which is
Code:
if (!IS_SUPPORT_MI_FAKE_32BIT) {
return false;
}
if (VERSION.DEVICE_INITIAL_SDK_INT <= 34) {
return true;
}
return SystemProperties.getBoolean("persist.sys.force_32bit_install", false);
On my device (15 Ultra), this property is 32, apparently <= 34, which means isEnabled32BitTranslate should have always returned true.... BUT that's not the case.
Only if I set persist.sys.force_32bit_install, can I install a 32 bit app as expected. This violates the code logic, so there must be something happened.
The only reason I come up with is that system_server gets a different ro.product.first_api_level from other processes (including shell and root user). This is still VERY WEIRD.
Hoping anyone can continue my investigation.