I have been trying to get this to work..
And I Succeeded!!!
original code in starter.. is wrong
Corrected code in starter
If you just copy the gs string it can't find the file
remove the path and it worked for me.
And I Succeeded!!!
original code in starter.. is wrong
B4X:
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
B4X:
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.