From b35499b873e78731b9ff2c1437f65dd07241f400 Mon Sep 17 00:00:00 2001 From: Stanley Tng Date: Thu, 27 Sep 2018 17:44:14 -0700 Subject: [PATCH] Change the feature flag for Hearing Aid behavior Previously, this feature flag for Hearing Aid Profile is to disable the profile on supported phone . This CL will reverse the logic and is to enable the Hearing Aid profile on unsupported phone. This is to allow testing of this profile on unsupported phone. Test: Manual tests on different types of phones Bug: 116861680 Bug: 116317072 Change-Id: Ic8db4445a58942c5f75598dce0503f6670ff9c7b Merged-In: Ic8db4445a58942c5f75598dce0503f6670ff9c7b (cherry picked from commit afa1f9c5c50ede877c447033deff4fd00a7b5635) --- core/java/android/util/FeatureFlagUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/util/FeatureFlagUtils.java b/core/java/android/util/FeatureFlagUtils.java index 01e2db2e39395..0f9ebee82c35c 100644 --- a/core/java/android/util/FeatureFlagUtils.java +++ b/core/java/android/util/FeatureFlagUtils.java @@ -46,7 +46,7 @@ public class FeatureFlagUtils { DEFAULT_FLAGS.put("settings_data_usage_v2", "true"); DEFAULT_FLAGS.put("settings_audio_switcher", "true"); DEFAULT_FLAGS.put("settings_systemui_theme", "true"); - DEFAULT_FLAGS.put(HEARING_AID_SETTINGS, "true"); + DEFAULT_FLAGS.put(HEARING_AID_SETTINGS, "false"); } /**