You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 15, 2024. It is now read-only.
I use Device.OpenUri(new Uri(String.Format("tel:{0}", "+49000000"))); to test the generall possibility to dial out with my app and it works.
But if i use this code below i always get an error that the funktion is not supported (FeatureNotSupportedException ).
public class PhoneDialerTest
{
public async Task PlacePhoneCall(string number)
{
try
{
PhoneDialer.Open(number);
}
catch (ArgumentNullException anEx)
{
// Number was null or white space
}
catch (FeatureNotSupportedException ex)
{
// Phone Dialer is not supported on this device.
}
catch (Exception ex)
{
// Other error has occurred.
}
}
}
I use Device.OpenUri(new Uri(String.Format("tel:{0}", "+49000000"))); to test the generall possibility to dial out with my app and it works.
But if i use this code below i always get an error that the funktion is not supported (FeatureNotSupportedException ).
I use a Iphone 7 with iOS 12.1 !!!