From 212c157e3205a6424ce8ba2bb3333e9b1226349d Mon Sep 17 00:00:00 2001 From: Tyler Gunn Date: Wed, 12 Sep 2018 17:50:49 -0700 Subject: Enable enhanced call blocking by default. Enable the enhanced call blocking options by default. This provides the ability to block: - private callers - those who have intentionally blocked their number. - calls from payphones (they still exist) - unknown callers (not the same as restricted; network may not be able to determine the number of the caller) - numbers not in contacts These options are available in the blocked number screen (on AOSP from the dialer app go to settings --> Blocked Numbers). Test: Manual - confirm enhanced call blocking options are available. Bug: 63966743 Change-Id: I5aab0714774a5406568d6cd04a4d7074a3261c44 --- telephony/java/android/telephony/CarrierConfigManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telephony/java/android/telephony/CarrierConfigManager.java b/telephony/java/android/telephony/CarrierConfigManager.java index 9319750a7a93..4fc058f4ccd2 100644 --- a/telephony/java/android/telephony/CarrierConfigManager.java +++ b/telephony/java/android/telephony/CarrierConfigManager.java @@ -2273,7 +2273,7 @@ public class CarrierConfigManager { sDefaults.putBoolean(KEY_SUPPORT_DIRECT_FDN_DIALING_BOOL, false); sDefaults.putBoolean(KEY_CARRIER_DEFAULT_DATA_ROAMING_ENABLED_BOOL, false); sDefaults.putBoolean(KEY_SKIP_CF_FAIL_TO_DISABLE_DIALOG_BOOL, false); - sDefaults.putBoolean(KEY_SUPPORT_ENHANCED_CALL_BLOCKING_BOOL, false); + sDefaults.putBoolean(KEY_SUPPORT_ENHANCED_CALL_BLOCKING_BOOL, true); // MMS defaults sDefaults.putBoolean(KEY_MMS_ALIAS_ENABLED_BOOL, false); -- cgit v1.2.3-59-g8ed1b