Navigation not working on waze apps using android intent and google.navigation:q=

I want my mobile app users to choose from the installed navigation apps. I am using this code. This code is starting navigation in google maps, here maps but it is not starting navigation in waze app.It seems like a problem with waze app

`public void openMapApps(String Latitude, String Longitude) {
String locationString;
locationString = “google.navigation:q=” + Latitude + “,” + Longitude;
Uri location = Uri.parse(locationString);

Intent mapIntent = new Intent(Intent.ACTION_VIEW, location);
try {
mapIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
this.reactContext.startActivity(mapIntent);
} catch (ActivityNotFoundException e) {
// Define what your app should do if no activity can handle the intent.
}
}`I wanted that all the installed navigation apps should be shown to mobile user and user can choose which app to use for navigationGoogle maps,here maps are working with this code but waze app is only opening and navigation is happening on waze apps

1 Like

I just came across the same issue!
Did you find any solution meanwhile?