I have a problem. I convert a string to Uri but it doesn't passes it all.
String num = "*#123#";
Intent call = new Intent(Intent.ACTION_DIAL);
call.setData(Uri.parse("tel:" + num));
startActivity(call);
After parse it I get ' * ' instead of " *#123# ".