I have been trying to get this to work..
And I Succeeded!!!
original code in starter.. is wrong
Sub Process_Globals
'Public auth As FirebaseAuth
Public storage As FilrebaseStorage
Private bucket As String = "gs://pumpcodespro-74451.appspot.com/public/Update.xml"
End Sub
Corrected code in starter
Sub Process_Globals
'Public auth As FirebaseAuth
Public storage As FilrebaseStorage
Private bucket As String = "gs://pumpcodespro-74451.appspot.com"
End Sub
If you just copy the gs string it can't find the file
remove the path and it worked for me.