Until now, the way to get the url from file on Storage in Firebase, I used to do this
taskSnapshot.getDownloadUrl, but nowadays is deprecated, which method I
You can use StorageReference.getDownloadUrl(). Please note that it returns a Task, so you will have to remember to treat it asynchronously like you do any other Task.