diff options
-rw-r--r-- | telecomm/java/android/telecom/PhoneAccount.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/telecomm/java/android/telecom/PhoneAccount.java b/telecomm/java/android/telecom/PhoneAccount.java index b6def1a22205..94c737d61b0a 100644 --- a/telecomm/java/android/telecom/PhoneAccount.java +++ b/telecomm/java/android/telecom/PhoneAccount.java @@ -1227,6 +1227,12 @@ public final class PhoneAccount implements Parcelable { if (hasCapabilities(CAPABILITY_VOICE_CALLING_AVAILABLE)) { sb.append("Voice "); } + if (hasCapabilities(CAPABILITY_SUPPORTS_TRANSACTIONAL_OPERATIONS)) { + sb.append("TransactOps "); + } + if (hasCapabilities(CAPABILITY_SUPPORTS_CALL_STREAMING)) { + sb.append("Stream "); + } return sb.toString(); } |