From 2155c4c897566a5a7c4620da72e7bdd5f9b80dc9 Mon Sep 17 00:00:00 2001 From: Tyler Gunn Date: Thu, 5 Apr 2018 09:43:41 -0700 Subject: [PATCH] Update Javadoc to clarify which calls are logged. Update javadoc to make it more clear tha tonly SIP or TEL scheme calls are logged at this time for self-managed CS. Test: Build - docs only change. Bug: 77581565 Change-Id: I1c5ef507077bc557f7af302a5b44c06bc90eef83 --- telecomm/java/android/telecom/PhoneAccount.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/telecomm/java/android/telecom/PhoneAccount.java b/telecomm/java/android/telecom/PhoneAccount.java index 95eb14ada3547..b3a3bf21cd8b4 100644 --- a/telecomm/java/android/telecom/PhoneAccount.java +++ b/telecomm/java/android/telecom/PhoneAccount.java @@ -129,6 +129,9 @@ public final class PhoneAccount implements Parcelable { *

* By default, Self-Managed {@link PhoneAccount}s do not log their calls to the call log. * Setting this extra to {@code true} provides a means for them to log their calls. + *

+ * Note: Only calls where the {@link Call.Details#getHandle()} {@link Uri#getScheme()} is + * {@link #SCHEME_SIP} or {@link #SCHEME_TEL} will be logged at the current time. */ public static final String EXTRA_LOG_SELF_MANAGED_CALLS = "android.telecom.extra.LOG_SELF_MANAGED_CALLS";