Does anyone know the command Device.OpenUri(new Uri("tel://" + numeroTelefono));
only redirects me to my calling application if it has less than 10 digits, what happens is that the numbers of cell phones in Mexico are 10 digits?
Does anyone know the command Device.OpenUri(new Uri("tel://" + numeroTelefono));
only redirects me to my calling application if it has less than 10 digits, what happens is that the numbers of cell phones in Mexico are 10 digits?
Hello after researching to put "tel://" en Device.OpenUri(new Uri("tel://" + numeroTelefono));
only detects me less than 10 digotos, but it is enough to remove the // and then it looks like this:
Device.OpenUri(new Uri("tel:" + numeroTelefono));
and with that it's more than enough.