Merge "Disable the large screen optimization system property by default" into main

This commit is contained in:
Jason Chiu
2023-11-21 03:01:57 +00:00
committed by Android (Google) Code Review

View File

@@ -53,7 +53,7 @@ public class ActivityEmbeddingUtils {
* @see androidx.window.embedding.SplitController.SplitSupportStatus#SPLIT_UNAVAILABLE
*/
private static final boolean SHOULD_ENABLE_LARGE_SCREEN_OPTIMIZATION =
SystemProperties.getBoolean("persist.settings.large_screen_opt.enabled", true);
SystemProperties.getBoolean("persist.settings.large_screen_opt.enabled", false);
private static final String TAG = "ActivityEmbeddingUtils";