From 64c43a3369ae3243c0300357a1455af71dad507d Mon Sep 17 00:00:00 2001 From: Tyler Gunn Date: Tue, 12 Oct 2021 09:27:19 -0700 Subject: [PATCH] Update API docs for "is_ims_conference_size_enforced_bool" key. Update API docs to reflect the fact that enforcing the IMS conference size requires conference event package. Test: Docs only change. Fixes: 202842203 Change-Id: Ia89a123b30e57cfe0a7e1bf4a43136812a553975 --- .../java/android/telephony/CarrierConfigManager.java | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/telephony/java/android/telephony/CarrierConfigManager.java b/telephony/java/android/telephony/CarrierConfigManager.java index 2467b12ab008d..d2fa312a60db1 100644 --- a/telephony/java/android/telephony/CarrierConfigManager.java +++ b/telephony/java/android/telephony/CarrierConfigManager.java @@ -1267,9 +1267,14 @@ public class CarrierConfigManager { /** * Determines whether a maximum size limit for IMS conference calls is enforced on the device. * When {@code true}, IMS conference calls will be limited to at most - * {@link #KEY_IMS_CONFERENCE_SIZE_LIMIT_INT} participants. When {@code false}, no attempt is made - * to limit the number of participants in a conference (the carrier will raise an error when an - * attempt is made to merge too many participants into a conference). + * {@link #KEY_IMS_CONFERENCE_SIZE_LIMIT_INT} participants. When {@code false}, no attempt is + * made to limit the number of participants in a conference (the carrier will raise an error + * when an attempt is made to merge too many participants into a conference). + *

+ * Note: The maximum size of a conference can ONLY be supported where + * {@link #KEY_SUPPORT_IMS_CONFERENCE_EVENT_PACKAGE_BOOL} is {@code true} since the platform + * needs conference event package data to accurately know the number of participants in the + * conference. */ public static final String KEY_IS_IMS_CONFERENCE_SIZE_ENFORCED_BOOL = "is_ims_conference_size_enforced_bool";