I have the following code:
let storageRef = FIRStorage().reference(forURL: \"gs://slugbug-....appspot.com\") // dots intentional let imageRef = storageRef.ch
I figured out the solution:
I changed the code from:
let storageRef = FIRStorage().reference(forURL: "gs://slugbug-....appspot.com")
to:
let storageRef = FIRStorage.storage().reference(forURL: "gs://slugbug-....appspot.com")
... a very subtle but annoying bug