Merge "Enable persist.wm.debug.predictive_back_anim by default." into tm-qpr-dev

This commit is contained in:
Shan Huang
2023-01-30 22:55:13 +00:00
committed by Android (Google) Code Review
2 changed files with 3 additions and 3 deletions

View File

@@ -82,7 +82,7 @@ public class BackAnimationController implements RemoteCallable<BackAnimationCont
/** Flag for U animation features */ /** Flag for U animation features */
public static boolean IS_U_ANIMATION_ENABLED = public static boolean IS_U_ANIMATION_ENABLED =
SystemProperties.getInt("persist.wm.debug.predictive_back_anim", SystemProperties.getInt("persist.wm.debug.predictive_back_anim",
SETTING_VALUE_OFF) == SETTING_VALUE_ON; SETTING_VALUE_ON) == SETTING_VALUE_ON;
/** Predictive back animation developer option */ /** Predictive back animation developer option */
private final AtomicBoolean mEnableAnimations = new AtomicBoolean(false); private final AtomicBoolean mEnableAnimations = new AtomicBoolean(false);
// TODO (b/241808055) Find a appropriate time to remove during refactor // TODO (b/241808055) Find a appropriate time to remove during refactor

View File

@@ -463,7 +463,7 @@ object Flags {
@Keep @Keep
@JvmField @JvmField
val WM_ENABLE_PREDICTIVE_BACK_ANIM = val WM_ENABLE_PREDICTIVE_BACK_ANIM =
sysPropBooleanFlag(1201, "persist.wm.debug.predictive_back_anim", default = false) sysPropBooleanFlag(1201, "persist.wm.debug.predictive_back_anim", default = true)
@Keep @Keep
@JvmField @JvmField
@@ -496,7 +496,7 @@ object Flags {
// TODO(b/238475428): Tracking Bug // TODO(b/238475428): Tracking Bug
@JvmField @JvmField
val WM_SHADE_ANIMATE_BACK_GESTURE = val WM_SHADE_ANIMATE_BACK_GESTURE =
unreleasedFlag(1208, "persist.wm.debug.shade_animate_back_gesture", teamfood = true) unreleasedFlag(1208, "persist.wm.debug.shade_animate_back_gesture", teamfood = false)
// TODO(b/265639042): Tracking Bug // TODO(b/265639042): Tracking Bug
@JvmField @JvmField