Allow the phone account to be queried for voicemail status

The column PHONE_ACCOUNT_COMPONENT_NAME and PHONE_ACCOUNT_ID is in
VoicemailContract.Status, but it was not added to the
VoicemailStatusTable projection so it was not queryable.

Bug: 30709089
Change-Id: I2551fc0821cf313fc066cd9014e52c73afdfc7bc
diff --git a/src/com/android/providers/contacts/VoicemailStatusTable.java b/src/com/android/providers/contacts/VoicemailStatusTable.java
index 7551c0d..01e5c24 100644
--- a/src/com/android/providers/contacts/VoicemailStatusTable.java
+++ b/src/com/android/providers/contacts/VoicemailStatusTable.java
@@ -27,7 +27,6 @@
 import android.net.Uri;
 import android.os.ParcelFileDescriptor;
 import android.provider.VoicemailContract.Status;
-
 import com.android.common.content.ProjectionMap;
 import com.android.providers.contacts.VoicemailContentProvider.UriData;
 
@@ -41,6 +40,8 @@
 
     private static final ProjectionMap sStatusProjectionMap = new ProjectionMap.Builder()
             .add(Status._ID)
+            .add(Status.PHONE_ACCOUNT_COMPONENT_NAME)
+            .add(Status.PHONE_ACCOUNT_ID)
             .add(Status.CONFIGURATION_STATE)
             .add(Status.DATA_CHANNEL_STATE)
             .add(Status.NOTIFICATION_CHANNEL_STATE)