I have an application who compose code and call but # DOESN't work it compose just *710
Intent appel = new Intent(Intent.ACTION_CALL,Uri.parse("tel:*710#"));
I have an application who compose code and call but # DOESN't work it compose just *710
Intent appel = new Intent(Intent.ACTION_CALL,Uri.parse("tel:*710#"));
Encoding the uri for #
before passing for parsing solves the problem.
String uri = "tel:*710%23";
Intent appel = new Intent(Intent.ACTION_CALL,Uri.parse(uri));