I am getting below exception for PhoneDialer
and EmailMessage
features.
Microsoft.Maui.ApplicationModel.FeatureNotSupportedException: Specified method is not supported.
at Microsoft.Maui.ApplicationModel.Communication.PhoneDialerImplementation.ValidateOpen(String number) in D:a_work1ssrcEssentialssrcPhoneDialerPhoneDialer.shared.cs:line 73
at Microsoft.Maui.ApplicationModel.Communication.PhoneDialerImplementation.Open(String number) in D:a_work1ssrcEssentialssrcPhoneDialerPhoneDialer.android.cs:line 25
at NeedHelp.Pages.FriendDetailsPage.PhoneNumber_Tapped(Object sender, EventArgs args)
PhoneDialer.Open(phone);
var message = new EmailMessage
{
Subject = subject,
Body = body,
To = recipients
Cc = ccRecipients,
Bcc = bccRecipients
};
await Email.ComposeAsync(message);
Do we have any alternatives for these features in MAUI?