Deprecate CarrierConfigManager.KEY_HIDE_ENABLE_2G

Bug: b/250952448
Test: Marking for deprecation. Tests still pass.
Change-Id: Ic84576d33476cbf5ab1f96feaa13b4db897e75c1
This commit is contained in:
Gil Cukierman
2022-10-24 15:38:17 -04:00
parent f760323d10
commit dc6608eb21
2 changed files with 6 additions and 1 deletions

View File

@@ -41322,7 +41322,7 @@ package android.telephony {
field public static final String KEY_GSM_ROAMING_NETWORKS_STRING_ARRAY = "gsm_roaming_networks_string_array";
field public static final String KEY_HAS_IN_CALL_NOISE_SUPPRESSION_BOOL = "has_in_call_noise_suppression_bool";
field public static final String KEY_HIDE_CARRIER_NETWORK_SETTINGS_BOOL = "hide_carrier_network_settings_bool";
field public static final String KEY_HIDE_ENABLE_2G = "hide_enable_2g_bool";
field @Deprecated public static final String KEY_HIDE_ENABLE_2G = "hide_enable_2g_bool";
field public static final String KEY_HIDE_ENHANCED_4G_LTE_BOOL = "hide_enhanced_4g_lte_bool";
field public static final String KEY_HIDE_IMS_APN_BOOL = "hide_ims_apn_bool";
field public static final String KEY_HIDE_LTE_PLUS_DATA_ICON_BOOL = "hide_lte_plus_data_icon_bool";

View File

@@ -8472,7 +8472,12 @@ public class CarrierConfigManager {
*
* Used to trade privacy/security against potentially reduced carrier coverage for some
* carriers.
*
* @deprecated Future versions of Android will disallow carriers from hiding this toggle
* because disabling 2g is a security feature that users should always have access to at
* their discretion.
*/
@Deprecated
public static final String KEY_HIDE_ENABLE_2G = "hide_enable_2g_bool";
/**