How can I get the "phone number's contact provider" (google/skype/whatsapp/...) when I query android's contact provider?
Currently I have these fields in my projection, and I'm not able to find the field that has the "contact-provider" information about the contact/number.
import android.provider.ContactsContract.Contacts;
import android.provider.ContactsContract.CommonDataKinds.Phone;
static final String[] CONTACTS_SUMMARY_PROJECTION = new String[] {
Contacts._ID,
Contacts.DISPLAY_NAME,
Contacts.CONTACT_STATUS,
Contacts.CONTACT_PRESENCE,
Contacts.PHOTO_ID,
Contacts.LOOKUP_KEY,
Phone.TYPE,
Phone.LABEL,
Phone.NUMBER,
};