From 01bbf1a8f3f2e5882278cd427611fdb4ebf427f9 Mon Sep 17 00:00:00 2001 From: Evan Rosky Date: Wed, 2 Mar 2022 16:18:44 -0800 Subject: [PATCH] Switch to persist.wm.debug For use with systemui flag flipping Bug: 219067621 Test: manual Change-Id: I5477b961bfdbe4e9103173c1c7f8daf03ce5eee4 --- quickstep/src/com/android/quickstep/TaskAnimationManager.java | 4 ++-- .../src/com/android/quickstep/AbstractQuickStepTest.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/quickstep/src/com/android/quickstep/TaskAnimationManager.java b/quickstep/src/com/android/quickstep/TaskAnimationManager.java index 5e298f4b8d..fa1eb61e29 100644 --- a/quickstep/src/com/android/quickstep/TaskAnimationManager.java +++ b/quickstep/src/com/android/quickstep/TaskAnimationManager.java @@ -49,9 +49,9 @@ import java.util.HashMap; public class TaskAnimationManager implements RecentsAnimationCallbacks.RecentsAnimationListener { public static final boolean ENABLE_SHELL_TRANSITIONS = - SystemProperties.getBoolean("persist.debug.shell_transit", false); + SystemProperties.getBoolean("persist.wm.debug.shell_transit", false); public static final boolean SHELL_TRANSITIONS_ROTATION = ENABLE_SHELL_TRANSITIONS - && SystemProperties.getBoolean("persist.debug.shell_transit_rotate", false); + && SystemProperties.getBoolean("persist.wm.debug.shell_transit_rotate", false); private RecentsAnimationController mController; private RecentsAnimationCallbacks mCallbacks; diff --git a/quickstep/tests/src/com/android/quickstep/AbstractQuickStepTest.java b/quickstep/tests/src/com/android/quickstep/AbstractQuickStepTest.java index fb7fda13a4..09f0858618 100644 --- a/quickstep/tests/src/com/android/quickstep/AbstractQuickStepTest.java +++ b/quickstep/tests/src/com/android/quickstep/AbstractQuickStepTest.java @@ -36,7 +36,7 @@ import org.junit.rules.TestRule; */ public abstract class AbstractQuickStepTest extends AbstractLauncherUiTest { static final boolean ENABLE_SHELL_TRANSITIONS = - SystemProperties.getBoolean("persist.debug.shell_transit", false); + SystemProperties.getBoolean("persist.wm.debug.shell_transit", false); @Override protected TestRule getRulesInsideActivityMonitor() { return RuleChain.