From 9cc48f3e960536e0876c3774e1af1a9e8e1a1190 Mon Sep 17 00:00:00 2001 From: Jeremy Sim Date: Tue, 28 Mar 2023 09:43:49 -0700 Subject: [PATCH] Create flag for new App Pairs feature This patch creates a new Launcher flag for the upcoming App Pairs feature. Flag: ENABLE_APP_PAIRS Bug: 274189428 Test: Not needed Change-Id: I84cfb3742a60bd5633d71bc68e7506ac0c67e55f --- src/com/android/launcher3/config/FeatureFlags.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/com/android/launcher3/config/FeatureFlags.java b/src/com/android/launcher3/config/FeatureFlags.java index b4fe748d1a..2972489dc1 100644 --- a/src/com/android/launcher3/config/FeatureFlags.java +++ b/src/com/android/launcher3/config/FeatureFlags.java @@ -404,6 +404,11 @@ public final class FeatureFlags { "ENABLE_APP_CLONING_CHANGES_IN_LAUNCHER", false, "Removes clone apps from the work profile tab."); + public static final BooleanFlag ENABLE_APP_PAIRS = getDebugFlag(274189428, + "ENABLE_APP_PAIRS", false, + "Enables the ability to create and save app pairs on the Home screen for easy" + + " split screen launching."); + public static class BooleanFlag { private final boolean mCurrentValue;