Merge "Let's get a constant for O_MR1."
This commit is contained in:
@@ -30609,6 +30609,7 @@ package android.os {
|
||||
field public static final int N = 24; // 0x18
|
||||
field public static final int N_MR1 = 25; // 0x19
|
||||
field public static final int O = 26; // 0x1a
|
||||
field public static final int O_MR1 = 10000; // 0x2710
|
||||
}
|
||||
|
||||
public final class Bundle extends android.os.BaseBundle implements java.lang.Cloneable android.os.Parcelable {
|
||||
|
||||
@@ -33419,6 +33419,7 @@ package android.os {
|
||||
field public static final int N = 24; // 0x18
|
||||
field public static final int N_MR1 = 25; // 0x19
|
||||
field public static final int O = 26; // 0x1a
|
||||
field public static final int O_MR1 = 10000; // 0x2710
|
||||
}
|
||||
|
||||
public final class Bundle extends android.os.BaseBundle implements java.lang.Cloneable android.os.Parcelable {
|
||||
|
||||
@@ -30720,6 +30720,7 @@ package android.os {
|
||||
field public static final int N = 24; // 0x18
|
||||
field public static final int N_MR1 = 25; // 0x19
|
||||
field public static final int O = 26; // 0x1a
|
||||
field public static final int O_MR1 = 10000; // 0x2710
|
||||
}
|
||||
|
||||
public final class Bundle extends android.os.BaseBundle implements java.lang.Cloneable android.os.Parcelable {
|
||||
|
||||
@@ -759,6 +759,11 @@ public class Build {
|
||||
* O.
|
||||
*/
|
||||
public static final int O = 26;
|
||||
|
||||
/**
|
||||
* O MR1.
|
||||
*/
|
||||
public static final int O_MR1 = CUR_DEVELOPMENT; // STOPSHIP Replace with the real version.
|
||||
}
|
||||
|
||||
/** The type of build, like "user" or "eng". */
|
||||
|
||||
@@ -41,7 +41,8 @@ enum {
|
||||
SDK_MNC = 23,
|
||||
SDK_NOUGAT = 24,
|
||||
SDK_NOUGAT_MR1 = 25,
|
||||
SDK_O = 26, // STOPSHIP replace with real version
|
||||
SDK_O = 26,
|
||||
SDK_O_MR1 = 10000, // STOPSHIP Replace with the real version.
|
||||
};
|
||||
|
||||
#endif // H_AAPT_SDK_CONSTANTS
|
||||
|
||||
@@ -52,6 +52,7 @@ enum : ApiVersion {
|
||||
SDK_NOUGAT = 24,
|
||||
SDK_NOUGAT_MR1 = 25,
|
||||
SDK_O = 26,
|
||||
SDK_O_MR1 = 10000, // STOPSHIP Replace with the real version.
|
||||
};
|
||||
|
||||
ApiVersion FindAttributeSdkLevel(const ResourceId& id);
|
||||
|
||||
Reference in New Issue
Block a user