Finalizing P SDK

am: 3da5f3b2dd

Change-Id: Id5002a3fc4d35352a4ace67e794c1a52e21c496c
This commit is contained in:
Wale Ogunwale
2018-04-13 14:18:27 -07:00
committed by android-build-merger
4 changed files with 4 additions and 4 deletions

View File

@@ -32190,7 +32190,7 @@ package android.os {
field public static final int N_MR1 = 25; // 0x19
field public static final int O = 26; // 0x1a
field public static final int O_MR1 = 27; // 0x1b
field public static final int P = 10000; // 0x2710
field public static final int P = 28; // 0x1c
}
public final class Bundle extends android.os.BaseBundle implements java.lang.Cloneable android.os.Parcelable {

View File

@@ -915,7 +915,7 @@ public class Build {
* even if there is no excess space.</li>
* </ul>
*/
public static final int P = CUR_DEVELOPMENT; // STOPSHIP Replace with the real version.
public static final int P = 28;
}
/** The type of build, like "user" or "eng". */

View File

@@ -43,7 +43,7 @@ enum {
SDK_NOUGAT_MR1 = 25,
SDK_O = 26,
SDK_O_MR1 = 27,
SDK_P = 10000, // STOPSHIP Replace with the real version.
SDK_P = 28,
};
#endif // H_AAPT_SDK_CONSTANTS

View File

@@ -53,7 +53,7 @@ enum : ApiVersion {
SDK_NOUGAT_MR1 = 25,
SDK_O = 26,
SDK_O_MR1 = 27,
SDK_P = 10000, // STOPSHIP Replace with the real version.
SDK_P = 28,
};
ApiVersion FindAttributeSdkLevel(const ResourceId& id);