Hi,
How to launch an Intent letting the user to choose among the navigation apps installed on his smartphone (gMaps, Here, Waze ....)
Here is my code, but it launch only gmaps
How to launch an Intent letting the user to choose among the navigation apps installed on his smartphone (gMaps, Here, Waze ....)
Here is my code, but it launch only gmaps
B4X:
Dim mapIntent As Intent
Dim geouri As String
geouri = "geo:?q=" & Dest.Latitude & ", " & Dest.Longitude
mapIntent.Initialize(mapIntent.ACTION_VIEW,geouri)
mapIntent.SetComponent("googlemaps")
StartActivity(mapIntent)