summaryrefslogtreecommitdiffstats
path: root/core/java/android
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2009-10-23 12:32:45 -0700
committerDianne Hackborn <hackbod@google.com>2009-10-26 17:40:52 -0700
commit0fa35918af608b56fb3f6aa98341624e22447f92 (patch)
tree0d633fee23424fa3e550d29e5afb00031cedb2fa /core/java/android
parent54620b1a77e51b3fa531dbd099bd69c39d7d0029 (diff)
downloadframeworks_base-0fa35918af608b56fb3f6aa98341624e22447f92.zip
frameworks_base-0fa35918af608b56fb3f6aa98341624e22447f92.tar.gz
frameworks_base-0fa35918af608b56fb3f6aa98341624e22447f92.tar.bz2
Add SDK version for MR1.
Change-Id: Idb13ed9a35397effbfb72a934a7db5f5a882c79c
Diffstat (limited to 'core/java/android')
-rw-r--r--core/java/android/os/Build.java13
1 files changed, 11 insertions, 2 deletions
diff --git a/core/java/android/os/Build.java b/core/java/android/os/Build.java
index 0f8bc08..d4aaba3 100644
--- a/core/java/android/os/Build.java
+++ b/core/java/android/os/Build.java
@@ -103,16 +103,19 @@ public class Build {
* October 2008: The original, first, version of Android. Yay!
*/
public static final int BASE = 1;
+
/**
* February 2009: First Android update, officially called 1.1.
*/
public static final int BASE_1_1 = 2;
+
/**
* May 2009: Android 1.5.
*/
public static final int CUPCAKE = 3;
+
/**
- * Current work on "Donut" development branch.
+ * September 2009: Android 1.6.
*
* <p>Applications targeting this or a later release will get these
* new changes in behavior:</p>
@@ -133,8 +136,9 @@ public class Build {
* </ul>
*/
public static final int DONUT = 4;
+
/**
- * Current work on "Eclair" development branch.
+ * November 2009: Android 2.0
*
* <p>Applications targeting this or a later release will get these
* new changes in behavior:</p>
@@ -152,6 +156,11 @@ public class Build {
* </ul>
*/
public static final int ECLAIR = 5;
+
+ /**
+ * Current work on Eclair MR1.
+ */
+ public static final int ECLAIR_MR1 = 6;
}
/** The type of build, like "user" or "eng". */