From 7f5b5d18c53e0703370dcc0e4c65321470d05cc6 Mon Sep 17 00:00:00 2001 From: Zhen Zhang Date: Tue, 28 Jan 2020 15:11:58 -0800 Subject: [PATCH] Add a feature flag for the new tether settings UI The default value of the flag is false. Bug:148220934 Bug:148182953 Test: Build successfully. Change-Id: I63bcf1afe68e42759cb1c73655bd7561fe180fab --- core/java/android/util/FeatureFlagUtils.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/java/android/util/FeatureFlagUtils.java b/core/java/android/util/FeatureFlagUtils.java index 6742281dc2b64..5fdac810af291 100644 --- a/core/java/android/util/FeatureFlagUtils.java +++ b/core/java/android/util/FeatureFlagUtils.java @@ -74,6 +74,8 @@ public class FeatureFlagUtils { // Disabled by default until b/148278926 is resolved. This flags guards a feature // introduced in R and will be removed in the next release (b/148367230). DEFAULT_FLAGS.put(SETTINGS_DO_NOT_RESTORE_PRESERVED, "false"); + + DEFAULT_FLAGS.put("settings_tether_all_in_one", "false"); } /**