I checked out this topic before I decided to post a question :link
While Depedency Service works on Android, I have some diffculties on my iOS part. I added UrlType "message://" to info plist.info So Im getting into if section:
{
public void openMail()
{
NSUrl mailUrl = new NSUrl("message://");
if (UIApplication.SharedApplication.CanOpenUrl(mailUrl))
{
UIApplication.SharedApplication.OpenUrl(mailUrl);
}
}
}
but nothing really happens afterwards..application doesnt crash, just it does nothing.
I wanted to check if the message://
is a good qualifier for calling an app (default email client)?