summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2009-10-29 01:43:33 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2009-10-29 01:43:33 -0700
commit9a27909e754b8b2623bbc82a931c2930c033cbb1 (patch)
tree9aaa40d2613803ea8b3fab0ce39483bb389fc979 /core
parentd7185d0bd250ff5f006ea94d305539ac7d499977 (diff)
parent40946aa20183984fd60f2dbdc7708cf1c5431047 (diff)
downloadframeworks_base-9a27909e754b8b2623bbc82a931c2930c033cbb1.zip
frameworks_base-9a27909e754b8b2623bbc82a931c2930c033cbb1.tar.gz
frameworks_base-9a27909e754b8b2623bbc82a931c2930c033cbb1.tar.bz2
am 40946aa2: am 1f668fff: Merge change Idb13ed9a into eclair
Merge commit '40946aa20183984fd60f2dbdc7708cf1c5431047' into eclair-mr2-plus-aosp * commit '40946aa20183984fd60f2dbdc7708cf1c5431047': Add SDK version for MR1.
Diffstat (limited to 'core')
-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". */