* commit '41ecc8b1e04794f3d6db01b594cb6daaafd8ae1d': Avoid supported ABI list containing "unknown".
This commit is contained in:
committed by
Android Git Automerger
commit
93ffc21fc6
@@ -88,7 +88,8 @@ public class Build {
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
public static final String[] SUPPORTED_ABIS = getString("ro.product.cpu.abilist").split(",");
|
||||
public static final String[] SUPPORTED_ABIS = SystemProperties.get("ro.product.cpu.abilist")
|
||||
.split(",");
|
||||
|
||||
/**
|
||||
* An ordered list of <b>32 bit</b> ABIs supported by this device. The most preferred ABI
|
||||
@@ -98,8 +99,8 @@ public class Build {
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
public static final String[] SUPPORTED_32_BIT_ABIS = getString("ro.product.cpu.abilist32")
|
||||
.split(",");
|
||||
public static final String[] SUPPORTED_32_BIT_ABIS =
|
||||
SystemProperties.get("ro.product.cpu.abilist32").split(",");
|
||||
|
||||
/**
|
||||
* An ordered list of <b>64 bit</b> ABIs supported by this device. The most preferred ABI
|
||||
@@ -109,8 +110,8 @@ public class Build {
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
public static final String[] SUPPORTED_64_BIT_ABIS = getString("ro.product.cpu.abilist64")
|
||||
.split(",");
|
||||
public static final String[] SUPPORTED_64_BIT_ABIS =
|
||||
SystemProperties.get("ro.product.cpu.abilist64").split(",");
|
||||
|
||||
|
||||
/** Various version strings. */
|
||||
|
||||
Reference in New Issue
Block a user