I'm building an iOS app which shows an image gallery (read only) to the user. These images would be uploaded to Firebase storage manually (no cms, web admin panel). Whenever a new image is added / deleted / modified at Firebase storage, the app should be able to show the updated content (just like Firebase realtime database).
I have checked similar questions related to downloading a file by creating reference to firebase storage through file url. In my case how the app will keep track of the hardcoded urls as images could change and new images could be uploaded.
1) One possible way is to create Image type database with url of each image and metadata saved into it, and that database should be synced with iOS app.
but again images are uploaded to the storage manually so how that reference could be saved into the database?