diff options
author | Dianne Hackborn <hackbod@google.com> | 2011-01-23 14:56:39 -0800 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2011-01-23 14:56:39 -0800 |
commit | 9d97b63d0e0c7c9deb2d140c1dd579b51f52c1af (patch) | |
tree | a518c9a8cf9a9cc08276f41f257d8d772ae4ea01 /core/java/android/os/Build.java | |
parent | b4ca900d139f87547b23ae78a744df68a052e83e (diff) | |
download | frameworks_base-9d97b63d0e0c7c9deb2d140c1dd579b51f52c1af.zip frameworks_base-9d97b63d0e0c7c9deb2d140c1dd579b51f52c1af.tar.gz frameworks_base-9d97b63d0e0c7c9deb2d140c1dd579b51f52c1af.tar.bz2 |
Honeycomb is now officially API 11.
Change-Id: I5b11801468bf6ee2482f1ef201ece70ed9303bd8
Diffstat (limited to 'core/java/android/os/Build.java')
-rw-r--r-- | core/java/android/os/Build.java | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/core/java/android/os/Build.java b/core/java/android/os/Build.java index 35f1c58..8d2607a 100644 --- a/core/java/android/os/Build.java +++ b/core/java/android/os/Build.java @@ -197,12 +197,17 @@ public class Build { public static final int FROYO = 8; /** - * Newest version of Android, version 2.3. + * November 2010: Android 2.3 */ public static final int GINGERBREAD = 9; + + /** + * Almost newest version of Android, version 2.3.3. + */ + public static final int GINGERBREAD_MR1 = 10; /** - * Next next version of Android. + * Newest version of Android, version 3.0. * * <p>Applications targeting this or a later release will get these * new changes in behavior:</p> @@ -211,7 +216,7 @@ public class Build { * {@link android.R.style#Theme_Holo}. * <li> The activity lifecycle has changed slightly as per * {@link android.app.Activity}. - * <li> When an application requires a permission to access on of + * <li> When an application requires a permission to access one of * its components (activity, receiver, service, provider), this * permission is no longer enforced when the application wants to * access its own component. This means it can require a permission @@ -219,7 +224,7 @@ public class Build { * component. * </ul> */ - public static final int HONEYCOMB = CUR_DEVELOPMENT; + public static final int HONEYCOMB = 11; } /** The type of build, like "user" or "eng". */ |