-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Filter out incompatible ABIs but do not reorder the list
Summary: This logic is supposed to filter out absolutely incompatible ABIs from the list given by `Build.SUPPORTED_ABIS`. This is particularly a problem on Oppo phones where 64-bit-capable devices (as reported in SUPPORTED_ABIS) launch 32-bit processes. However, this logic also ended up reordering the list. In particular, if both `armeabi-v7a` and `x86` were in the list, it would always reorder `armeabi-v7a` first. This is incorrect on devices with houdini-like capabilities, like the Android Pie Google APIs emulator image. This diff preserves the filtering logic but removes the reordering. This addresses one incarnation of Issue #55. Reviewed By: oprisnik Differential Revision: D19506390 fbshipit-source-id: 224155605fde7853227a57ea5b21a4e23ecdd972
- Loading branch information
1 parent
b6854af
commit 20198bf
Showing
1 changed file
with
26 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters