Merge "log VoIP capabilites that were introduced in U" into udc-dev am: a4551d5615

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/21570219

Change-Id: I76c7a3ac428cd78abd3064061679651d81a6fdb5
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Thomas Stuart
2023-02-24 21:21:43 +00:00
committed by Automerger Merge Worker

View File

@@ -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();
}