diff options
author | 2021-12-15 23:54:48 +0000 | |
---|---|---|
committer | 2021-12-15 23:54:48 +0000 | |
commit | 325b64ce577a8eb2ce870f9e86c09d93cfcea603 (patch) | |
tree | ce2835c1a0a14dfa964a420f6a2fb4691440d98d | |
parent | d1d210762b6ca9c23e051657c4c9962500a79bff (diff) | |
parent | f63c1fddb3c68af5c31e1a571fa1b06ef7343603 (diff) |
Merge "Add carrier configuration for list of opportunistic carrier-ids associated with CBRS pSIM"
-rw-r--r-- | telephony/java/android/telephony/CarrierConfigManager.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/telephony/java/android/telephony/CarrierConfigManager.java b/telephony/java/android/telephony/CarrierConfigManager.java index d3fc033e1b1d..95b9fda34211 100644 --- a/telephony/java/android/telephony/CarrierConfigManager.java +++ b/telephony/java/android/telephony/CarrierConfigManager.java @@ -3718,6 +3718,17 @@ public class CarrierConfigManager { "esim_max_download_retry_attempts_int"; /** + * List of opportunistic carrier-ids associated with CBRS Primary SIM. When CBRS pSIM is + * inserted, opportunistic eSIM is download and this configuration is used for grouping pSIM + * and opportunistic eSIM. Also when a new CBRS pSIM is inserted, old opportunistic eSIMs are + * deleted using the carrier-ids in this configuration. + * + * @hide + */ + public static final String KEY_OPPORTUNISTIC_CARRIER_IDS_INT_ARRAY = + "opportunistic_carrier_ids_int_array"; + + /** * Controls RSRP threshold at which OpportunisticNetworkService will decide whether * the opportunistic network is good enough for internet data. */ @@ -5774,6 +5785,7 @@ public class CarrierConfigManager { sDefaults.putString(KEY_SMDP_SERVER_ADDRESS_STRING, ""); sDefaults.putInt(KEY_ESIM_MAX_DOWNLOAD_RETRY_ATTEMPTS_INT, 5); sDefaults.putInt(KEY_ESIM_DOWNLOAD_RETRY_BACKOFF_TIMER_SEC_INT, 60); + sDefaults.putIntArray(KEY_OPPORTUNISTIC_CARRIER_IDS_INT_ARRAY, new int[] {0}); /* Default value is minimum RSRP level needed for SIGNAL_STRENGTH_GOOD */ sDefaults.putInt(KEY_OPPORTUNISTIC_NETWORK_ENTRY_THRESHOLD_RSRP_INT, -108); /* Default value is minimum RSRP level needed for SIGNAL_STRENGTH_MODERATE */ |