Set client type for outbound visual voicemail SMS

The client type is used by the carriers to track what client are
accessing their services. During NMR1 it was regressed into "null".

This CL restore it back to "google.vvm.10". It should be updated
to use non-hardcoded string in the future(b/34112272)

Bug: 34051654
Change-Id: I69ead25a7b17e0b69441f4264b974904f9730865
Fixes: 34051654
Test: NA
diff --git a/src/com/android/phone/vvm/omtp/protocol/OmtpProtocol.java b/src/com/android/phone/vvm/omtp/protocol/OmtpProtocol.java
index d002652..7ec3dba 100644
--- a/src/com/android/phone/vvm/omtp/protocol/OmtpProtocol.java
+++ b/src/com/android/phone/vvm/omtp/protocol/OmtpProtocol.java
@@ -28,6 +28,7 @@
     public OmtpMessageSender createMessageSender(SmsManager smsManager, short applicationPort,
             String destinationNumber) {
         return new OmtpStandardMessageSender(smsManager, applicationPort, destinationNumber,
-                null, OmtpConstants.PROTOCOL_VERSION1_1, null);
+                OmtpConstants.CLIENT_TYPE_GOOGLE_10, OmtpConstants.PROTOCOL_VERSION1_1,
+                null /*clientPrefix*/);
     }
 }