summaryrefslogtreecommitdiff
path: root/core/java/android
diff options
context:
space:
mode:
authorMichael Wright <michaelwr@google.com>2021-10-27 17:40:29 +0100
committerMichael Wright <michaelwr@google.com>2021-10-27 17:52:31 +0100
commitca2f5492180140ccdd222ed35b2d798e77abaf10 (patch)
tree10bbda16f05d9bf3cb03173f77f9b76eb53c3b12 /core/java/android
parent4c0857c9527d04253f77203442c2026926526a3b (diff)
Add constant for SC V2.
Bug: 204295952 Test: N/A Change-Id: Ieecebfccf9366815c93d620b70aeabc1abcd3ebd
Diffstat (limited to 'core/java/android')
-rwxr-xr-xcore/java/android/os/Build.java9
1 files changed, 8 insertions, 1 deletions
diff --git a/core/java/android/os/Build.java b/core/java/android/os/Build.java
index 394d270e1e51..743468a6dd08 100755
--- a/core/java/android/os/Build.java
+++ b/core/java/android/os/Build.java
@@ -1024,7 +1024,7 @@ public class Build {
* will also enable {@link StrictMode.ThreadPolicy.Builder#detectUnbufferedIo}.</li>
* <li>{@link android.provider.DocumentsContract}'s various methods will throw failure
* exceptions back to the caller instead of returning null.
- * <li>{@link View#hasFocusable View.hasFocusable} now includes auto-focusable views.</li>
+ * <li>{@link View#hasFocusable() View.hasFocusable} now includes auto-focusable views.</li>
* <li>{@link android.view.SurfaceView} will no longer always change the underlying
* Surface object when something about it changes; apps need to look at the current
* state of the object to determine which things they are interested in have changed.</li>
@@ -1132,6 +1132,13 @@ public class Build {
public static final int S = 31;
/**
+ * S V2.
+ *
+ * Once more unto the breach, dear friends, once more.
+ */
+ public static final int S_V2 = 32;
+
+ /**
* Tiramisu.
*/
public static final int TIRAMISU = CUR_DEVELOPMENT;