I'm tried to write code that open Waze with address , its worked fine 10 month but now its just open Waze and not give me navigate , code below
String uri = "geo:0,0?q=" + selectedName;
Uri u = Uri.parse(uri);
Intent intent = new Intent(Intent.ACTION_VIEW,u);
startActivity(Intent.createChooser(intent,"Choose Navigation Software"));
(Don't forget thats it need to work to just with Waze , Its work also with google maps and moovit).
Please Help me ,
Thanks in advance