Android Question problem with StreetView Intent

marcick

Well-Known Member
Licensed User
Longtime User
Hi all,
suddenly, on my device (Galaxy S6 Lollipop) the streetview intent no longer works and i get a crash with the message "Streetview has been stopped".

I tested it also with a new blank project, copying the intent sample string as documented by google.
The code works on other devices, but it was working on mine also til a couple of days ago.
What could be happened ?

B4X:
' see https://developers.google.com/maps/documentation/android/intents
' google.streetview:cbll=latitude,longitude&cbp=0,bearing,0,zoom,tilt
       
Dim Uri As String
Uri="google.streetview:cbll=29.9774614,31.1329645&cbp=0,30,0,0,-15"
Dim Intent1 As Intent
Intent1.Initialize(Intent1.ACTION_VIEW,Uri)
Intent1.SetComponent("googlemaps")
StartActivity(Intent1)
 
Top