in java/com/facebook/soloader/SysUtil.java [380:392]
public static boolean is64Bit() {
boolean is64bit = false;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
is64bit = MarshmallowSysdeps.is64Bit();
} else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
try {
is64bit = LollipopSysdeps.is64Bit();
} catch (Exception e) {
Log.e(TAG, String.format("Could not read /proc/self/exe. Err msg: %s", e.getMessage()));
}
}
return is64bit;
}