From afa1f9c5c50ede877c447033deff4fd00a7b5635 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 Change-Id: Ic8db4445a58942c5f75598dce0503f6670ff9c7b --- 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 183e83304925e..db2c190433615 100644 --- a/core/java/android/util/FeatureFlagUtils.java +++ b/core/java/android/util/FeatureFlagUtils.java @@ -47,7 +47,7 @@ public class FeatureFlagUtils { DEFAULT_FLAGS.put("settings_mobile_network_v2", "false"); DEFAULT_FLAGS.put("settings_data_usage_v2", "false"); DEFAULT_FLAGS.put("settings_seamless_transfer", "false"); - DEFAULT_FLAGS.put(HEARING_AID_SETTINGS, "true"); + DEFAULT_FLAGS.put(HEARING_AID_SETTINGS, "false"); DEFAULT_FLAGS.put(EMERGENCY_DIAL_SHORTCUTS, "false"); }