summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Stanley Tng <stng@google.com> 2018-09-27 17:44:14 -0700
committer Stanley Tng <stng@google.com> 2018-09-28 12:37:56 -0700
commitafa1f9c5c50ede877c447033deff4fd00a7b5635 (patch)
treeb84220be0f025f4c9c35bdefaa6919faf0b1033b
parent2b435884bdd8ac645b1bcc1de5e7707765fe0dc7 (diff)
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
-rw-r--r--core/java/android/util/FeatureFlagUtils.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/util/FeatureFlagUtils.java b/core/java/android/util/FeatureFlagUtils.java
index 183e83304925..db2c19043361 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");
}