Hi,
I have a application that creates a .vcf file after you input data. it stores storage provided by the phone, i want to click on a list view item and get the vcf file and share it via email, sms, whats app, Skype etc how do I implement this in IOS, Android and UWP.
Thank you
Answers
Hi Paula Aliu, I would like to know the .vcf file creation, As you said that you are already have it, can you please suggest me how to implement creating the .vcf file in my Xamarin forms application.
Thank you,
Hello @PaulaAliu @Ganesh.4229
"I have a application that creates a .vcf file after you input data. it stores storage provided by the phone, i want to click on a list view item and get the vcf file and share it via email, sms, whats app, Skype etc how do I implement this in IOS and Android."
I have to implement same Please help me if you found any solution.
Thanks in advance.
@PaulaAliu You would first need to save the file to a local storage, say in ApplicationData path
Once that is done, you can share it via Intent which will allow you to choose an App of your choice.
A similar working is shown in here:
https://stackoverflow.com/a/31678230/781764