Merge change Idb13ed9a into eclair

* changes:
  Add SDK version for MR1.
This commit is contained in:
Android (Google) Code Review
2009-10-27 15:47:57 -04:00
2 changed files with 22 additions and 2 deletions

View File

@@ -99410,6 +99410,17 @@
visibility="public" visibility="public"
> >
</field> </field>
<field name="ECLAIR_MR1"
type="int"
transient="false"
volatile="false"
value="6"
static="true"
final="true"
deprecated="not deprecated"
visibility="public"
>
</field>
</class> </class>
<class name="Bundle" <class name="Bundle"
extends="java.lang.Object" extends="java.lang.Object"

View File

@@ -103,16 +103,19 @@ public class Build {
* October 2008: The original, first, version of Android. Yay! * October 2008: The original, first, version of Android. Yay!
*/ */
public static final int BASE = 1; public static final int BASE = 1;
/** /**
* February 2009: First Android update, officially called 1.1. * February 2009: First Android update, officially called 1.1.
*/ */
public static final int BASE_1_1 = 2; public static final int BASE_1_1 = 2;
/** /**
* May 2009: Android 1.5. * May 2009: Android 1.5.
*/ */
public static final int CUPCAKE = 3; 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 * <p>Applications targeting this or a later release will get these
* new changes in behavior:</p> * new changes in behavior:</p>
@@ -133,8 +136,9 @@ public class Build {
* </ul> * </ul>
*/ */
public static final int DONUT = 4; 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 * <p>Applications targeting this or a later release will get these
* new changes in behavior:</p> * new changes in behavior:</p>
@@ -152,6 +156,11 @@ public class Build {
* </ul> * </ul>
*/ */
public static final int ECLAIR = 5; 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". */ /** The type of build, like "user" or "eng". */