Change dt for CVVM to 6

Bug: 70243393
Test: N/A
PiperOrigin-RevId: 179064288
Change-Id: Id8b2e600ae00edbe2697932ad2d9fe78ea4430b5
diff --git a/java/com/android/voicemail/impl/sms/OmtpCvvmMessageSender.java b/java/com/android/voicemail/impl/sms/OmtpCvvmMessageSender.java
index 5fc5e70..0df639f 100644
--- a/java/com/android/voicemail/impl/sms/OmtpCvvmMessageSender.java
+++ b/java/com/android/voicemail/impl/sms/OmtpCvvmMessageSender.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015 Google Inc. All Rights Reserved.
+ * Copyright (C) 2015 The Android Open Source Project
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -49,7 +49,7 @@
   private void sendCvvmMessage(String request, PendingIntent sentIntent) {
     StringBuilder sb = new StringBuilder().append(request);
     sb.append(OmtpConstants.SMS_PREFIX_SEPARATOR);
-    appendField(sb, "dt", "15");
+    appendField(sb, "dt" /* device type */, "6" /* no VTT (transcription) support*/);
     sendSms(sb.toString(), sentIntent);
   }
 }