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

This commit is contained in:
Thomas Stuart
2023-02-24 20:38:36 +00:00
committed by Android (Google) Code Review

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