summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Hyosun Kim <hyosunkim@google.com> 2024-03-28 02:26:55 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2024-03-28 02:26:55 +0000
commit7fec47f8836ab6987aa8e36fd7d0d303f720c464 (patch)
tree9879535aa54e2bc436d0ebd1095f33b4e993559e
parent85e8bf7d8170544a380ff79746c8423ca8e2207a (diff)
parent79678222ebc0008263986a63f16704b1a280b4de (diff)
Merge "Added carrier config for the appName that is used when querying the entitlement server for satellite." into 24D1-dev
-rw-r--r--telephony/java/android/telephony/CarrierConfigManager.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/telephony/java/android/telephony/CarrierConfigManager.java b/telephony/java/android/telephony/CarrierConfigManager.java
index 5d99acd87dd3..0e95a723d9ae 100644
--- a/telephony/java/android/telephony/CarrierConfigManager.java
+++ b/telephony/java/android/telephony/CarrierConfigManager.java
@@ -9828,6 +9828,19 @@ public class CarrierConfigManager {
"satellite_entitlement_supported_bool";
/**
+ * Indicates the appName that is used when querying the entitlement server for satellite.
+ *
+ * The default value is androidSatmode.
+ *
+ * Reference: GSMA TS.43-v11, 2.8.5 Fast Authentication and Token Management.
+ * `app_name` is an optional attribute in the request and may vary depending on the carrier
+ * requirement.
+ * @hide
+ */
+ public static final String KEY_SATELLITE_ENTITLEMENT_APP_NAME_STRING =
+ "satellite_entitlement_app_name_string";
+
+ /**
* Indicating whether DUN APN should be disabled when the device is roaming. In that case,
* the default APN (i.e. internet) will be used for tethering.
*
@@ -10945,6 +10958,7 @@ public class CarrierConfigManager {
sDefaults.putBoolean(KEY_OVERRIDE_WFC_ROAMING_MODE_WHILE_USING_NTN_BOOL, true);
sDefaults.putInt(KEY_SATELLITE_ENTITLEMENT_STATUS_REFRESH_DAYS_INT, 30);
sDefaults.putBoolean(KEY_SATELLITE_ENTITLEMENT_SUPPORTED_BOOL, false);
+ sDefaults.putString(KEY_SATELLITE_ENTITLEMENT_APP_NAME_STRING, "androidSatmode");
sDefaults.putBoolean(KEY_DISABLE_DUN_APN_WHILE_ROAMING_WITH_PRESET_APN_BOOL, false);
sDefaults.putString(KEY_DEFAULT_PREFERRED_APN_NAME_STRING, "");
sDefaults.putBoolean(KEY_SUPPORTS_CALL_COMPOSER_BOOL, false);