I am trying to send a VCard from a String or file via Intents choosing the app, for example Whatsapp. Do you have any ideas?
Thanks
Edit:
I have tried this code. Also with set type text/plain. The vcard variable is a String with a VCard.
Intent intent = new Intent(android.content.Intent.ACTION_SEND);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setType("text/x-vcard");
intent.putExtra(android.content.Intent.EXTRA_STREAM, vcard);
intent.setPackage(packageName);
If I send this to Whatsapp I got to send the vcard like a string but not recognize like a card