Finalizing P SDK

Bug: 77588754
Test: builds
Change-Id: Ic06cad790a3dc53d012a7c43dfac911fc6dc61e7
This commit is contained in:
Wale Ogunwale
2018-04-11 15:12:31 -07:00
parent 79634c7025
commit 3da5f3b2dd
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

@@ -911,7 +911,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);