Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3c1043a1 authored by Megha Patil's avatar Megha Patil
Browse files

Renaming of KEY_SMS_MAX_RETRY_COUNT_OVER_IMS_INT

Renaming KEY_SMS_MAX_RETRY_COUNT_OVER_IMS_INT to
KEY_SMS_MAX_RETRY_OVER_IMS_COUNT_INT
Bug: b/266675272

Test: mm build
Change-Id: Ic093a56841a54157f524bb5d69e1a4543793a5e6
parent a2e25764
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -43377,7 +43377,7 @@ package android.telephony {
    field public static final String KEY_PREFIX = "imssms.";
    field public static final String KEY_SMS_CSFB_RETRY_ON_FAILURE_BOOL = "imssms.sms_csfb_retry_on_failure_bool";
    field public static final String KEY_SMS_MAX_RETRY_COUNT_INT = "imssms.sms_max_retry_count_int";
    field public static final String KEY_SMS_MAX_RETRY_COUNT_OVER_IMS_INT = "imssms.sms_max_retry_count_over_ims_int";
    field public static final String KEY_SMS_MAX_RETRY_OVER_IMS_COUNT_INT = "imssms.sms_max_retry_over_ims_count_int";
    field public static final String KEY_SMS_OVER_IMS_FORMAT_INT = "imssms.sms_over_ims_format_int";
    field public static final String KEY_SMS_OVER_IMS_SEND_RETRY_DELAY_MILLIS_INT = "imssms.sms_over_ims_send_retry_delay_millis_int";
    field public static final String KEY_SMS_OVER_IMS_SUPPORTED_BOOL = "imssms.sms_over_ims_supported_bool";
+4 −4
Original line number Diff line number Diff line
@@ -6990,11 +6990,11 @@ public class CarrierConfigManager {

        /**
         * Maximum Retry Count for SMS over IMS on Failure, If the Retry Count exceeds this value,
         * and if the retry count is less than KEY_SMS_MAX_RETRY_COUNT_INT
         * and if the retry count is less than {@link #KEY_SMS_MAX_RETRY_COUNT_INT}
         * sending SMS should fallback to CS
         */
        public static final String KEY_SMS_MAX_RETRY_COUNT_OVER_IMS_INT =
                KEY_PREFIX + "sms_max_retry_count_over_ims_int";
        public static final String KEY_SMS_MAX_RETRY_OVER_IMS_COUNT_INT =
                KEY_PREFIX + "sms_max_retry_over_ims_count_int";

        /**
         * Delay Timer Value in milliseconds
@@ -7062,7 +7062,7 @@ public class CarrierConfigManager {
            defaults.putInt(KEY_SMS_OVER_IMS_FORMAT_INT, SMS_FORMAT_3GPP);

            defaults.putInt(KEY_SMS_MAX_RETRY_COUNT_INT, 3);
            defaults.putInt(KEY_SMS_MAX_RETRY_COUNT_OVER_IMS_INT, 3);
            defaults.putInt(KEY_SMS_MAX_RETRY_OVER_IMS_COUNT_INT, 3);
            defaults.putInt(KEY_SMS_OVER_IMS_SEND_RETRY_DELAY_MILLIS_INT,
                    2000);
            defaults.putInt(KEY_SMS_TR1_TIMER_MILLIS_INT, 130000);