diff options
author | Ficus Kirkpatrick <ficus@android.com> | 2010-01-06 17:37:13 -0800 |
---|---|---|
committer | Ficus Kirkpatrick <ficus@android.com> | 2010-01-07 12:57:42 -0800 |
commit | fa9cafa074eb5d98b49b63795cd947877df1f21d (patch) | |
tree | 74a00a2ceaaa2b47ee20e287c7e272d47acd5b3b /core/java/android/os/Build.java | |
parent | 1c819a5e3e7ba7499589e798a5f971263cf3c65b (diff) | |
download | frameworks_base-fa9cafa074eb5d98b49b63795cd947877df1f21d.zip frameworks_base-fa9cafa074eb5d98b49b63795cd947877df1f21d.tar.gz frameworks_base-fa9cafa074eb5d98b49b63795cd947877df1f21d.tar.bz2 |
Add a string for second-ABI system property to android.os.Build.
Diffstat (limited to 'core/java/android/os/Build.java')
-rw-r--r-- | core/java/android/os/Build.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/java/android/os/Build.java b/core/java/android/os/Build.java index e9353d8..5f6c9d6 100644 --- a/core/java/android/os/Build.java +++ b/core/java/android/os/Build.java @@ -41,6 +41,9 @@ public class Build { /** The name of the instruction set (CPU type + ABI convention) of native code. */ public static final String CPU_ABI = getString("ro.product.cpu.abi"); + /** The name of the second instruction set (CPU type + ABI convention) of native code. */ + public static final String CPU_ABI2 = getString("ro.product.cpu.abi2"); + /** The manufacturer of the product/hardware. */ public static final String MANUFACTURER = getString("ro.product.manufacturer"); |