Create the feature flag for Provider model development

Provider model is a feature which improves networks
Settings UX.

Bug: 167474581
Test: compile
Change-Id: Ib9a5a3fb1026fa5863afd4e23121391bf762fd08
This commit is contained in:
Arc Wang
2020-09-02 10:54:09 +08:00
parent 609abbbd5c
commit b96ea47567

View File

@@ -44,6 +44,8 @@ public class FeatureFlagUtils {
/** @hide */
public static final String SETTINGS_DO_NOT_RESTORE_PRESERVED =
"settings_do_not_restore_preserved";
/** @hide */
public static final String SETTINGS_PROVIDER_MODEL = "settings_provider_model";
private static final Map<String, String> DEFAULT_FLAGS;
@@ -67,6 +69,7 @@ public class FeatureFlagUtils {
DEFAULT_FLAGS.put("settings_tether_all_in_one", "false");
DEFAULT_FLAGS.put("settings_silky_home", "false");
DEFAULT_FLAGS.put("settings_contextual_home", "false");
DEFAULT_FLAGS.put(SETTINGS_PROVIDER_MODEL, "false");
}
/**