diff options
author | Suprabh Shukla <suprabh@google.com> | 2019-04-29 14:16:01 -0700 |
---|---|---|
committer | Suprabh Shukla <suprabh@google.com> | 2019-05-01 14:11:18 -0700 |
commit | 8a3d1f96e1736c7e0493ebb71ed2904dffdebbfd (patch) | |
tree | c4417c57ccc5825b6425a93780e53c4d1f480980 | |
parent | f6ed8afa405dfae445a16f7433e4d8a9f20115b9 (diff) |
RESTRICT AUTOMERGE Android Q is API 29
Time may be eternal, Captain, but our patience is not. It's time to put
an end to your trek through the stars.
Test: Builds, boots.
Bug: 131429032
Bug: 129975435
Change-Id: Ia2367124afb642dac0fb365e4fa096db1c648adb
-rw-r--r-- | api/current.txt | 2 | ||||
-rwxr-xr-x | core/java/android/os/Build.java | 3 | ||||
-rw-r--r-- | tools/aapt/SdkConstants.h | 1 | ||||
-rw-r--r-- | tools/aapt2/SdkConstants.h | 1 |
4 files changed, 4 insertions, 3 deletions
diff --git a/api/current.txt b/api/current.txt index 9b8ea93f0a27..ee975296d761 100644 --- a/api/current.txt +++ b/api/current.txt @@ -34164,7 +34164,7 @@ package android.os { field public static final int O = 26; // 0x1a field public static final int O_MR1 = 27; // 0x1b field public static final int P = 28; // 0x1c - field public static final int Q = 10000; // 0x2710 + field public static final int Q = 29; // 0x1d } public final class Bundle extends android.os.BaseBundle implements java.lang.Cloneable android.os.Parcelable { diff --git a/core/java/android/os/Build.java b/core/java/android/os/Build.java index 3a4741a97212..1c9740728f1f 100755 --- a/core/java/android/os/Build.java +++ b/core/java/android/os/Build.java @@ -976,8 +976,7 @@ public class Build { * to come. Con permiso, Capitan. The hall is rented, the orchestra * engaged. It's now time to see if you can dance.</em> */ - public static final int Q = CUR_DEVELOPMENT; - + public static final int Q = 29; } /** The type of build, like "user" or "eng". */ diff --git a/tools/aapt/SdkConstants.h b/tools/aapt/SdkConstants.h index c1fcf5cad240..27ffcdf52168 100644 --- a/tools/aapt/SdkConstants.h +++ b/tools/aapt/SdkConstants.h @@ -44,6 +44,7 @@ enum { SDK_O = 26, SDK_O_MR1 = 27, SDK_P = 28, + SDK_Q = 29, }; #endif // H_AAPT_SDK_CONSTANTS diff --git a/tools/aapt2/SdkConstants.h b/tools/aapt2/SdkConstants.h index 9fa29f25c29c..580daabbd577 100644 --- a/tools/aapt2/SdkConstants.h +++ b/tools/aapt2/SdkConstants.h @@ -54,6 +54,7 @@ enum : ApiVersion { SDK_O = 26, SDK_O_MR1 = 27, SDK_P = 28, + SDK_Q = 29, }; ApiVersion FindAttributeSdkLevel(const ResourceId& id); |