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.
We are using PhoneDialer for one of our xamarin apps and we are facing issues after updating to ios15.4. Phone Dialer is not throwing any error to catch and give an alternative way for customers. Btw Android works absolutely fine !
Steps to Reproduce
try { PhoneDialer.Open("*727575554444#"); } catch (ArgumentNullException anEx) { // Number was null or white space Console.WriteLine("formatting wrong"); } catch (FeatureNotSupportedException ex) { Console.WriteLine("FeatureNotSupportedException "); // Phone Dialer is not supported on this device. } catch (Exception ex) { Console.WriteLine("formatting wrong"); // Other error has occurred. }