From ca2f5492180140ccdd222ed35b2d798e77abaf10 Mon Sep 17 00:00:00 2001 From: Michael Wright Date: Wed, 27 Oct 2021 17:40:29 +0100 Subject: Add constant for SC V2. Bug: 204295952 Test: N/A Change-Id: Ieecebfccf9366815c93d620b70aeabc1abcd3ebd --- core/java/android/os/Build.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'core/java/android') 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}. *
  • {@link android.provider.DocumentsContract}'s various methods will throw failure * exceptions back to the caller instead of returning null. - *
  • {@link View#hasFocusable View.hasFocusable} now includes auto-focusable views.
  • + *
  • {@link View#hasFocusable() View.hasFocusable} now includes auto-focusable views.
  • *
  • {@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.
  • @@ -1131,6 +1131,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. */ -- cgit v1.2.3