am 41ec8c96: Merge "Avoid supported ABI list containing "unknown"."
* commit '41ec8c9672fccce90a7156bcd856f59a36e93ad3': Avoid supported ABI list containing "unknown".
This commit is contained in:
committed by
Android Git Automerger
commit
dcc9cf03a8
@@ -83,7 +83,8 @@ public class Build {
|
|||||||
*
|
*
|
||||||
* @hide
|
* @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
|
* An ordered list of <b>32 bit</b> ABIs supported by this device. The most preferred ABI
|
||||||
@@ -93,8 +94,8 @@ public class Build {
|
|||||||
*
|
*
|
||||||
* @hide
|
* @hide
|
||||||
*/
|
*/
|
||||||
public static final String[] SUPPORTED_32_BIT_ABIS = getString("ro.product.cpu.abilist32")
|
public static final String[] SUPPORTED_32_BIT_ABIS =
|
||||||
.split(",");
|
SystemProperties.get("ro.product.cpu.abilist32").split(",");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An ordered list of <b>64 bit</b> ABIs supported by this device. The most preferred ABI
|
* An ordered list of <b>64 bit</b> ABIs supported by this device. The most preferred ABI
|
||||||
@@ -104,8 +105,8 @@ public class Build {
|
|||||||
*
|
*
|
||||||
* @hide
|
* @hide
|
||||||
*/
|
*/
|
||||||
public static final String[] SUPPORTED_64_BIT_ABIS = getString("ro.product.cpu.abilist64")
|
public static final String[] SUPPORTED_64_BIT_ABIS =
|
||||||
.split(",");
|
SystemProperties.get("ro.product.cpu.abilist64").split(",");
|
||||||
|
|
||||||
|
|
||||||
/** Various version strings. */
|
/** Various version strings. */
|
||||||
|
|||||||
Reference in New Issue
Block a user