Collect an image from Firebase storage (kotlin)
I'm developing a simple customer profile page for my app.
What I need:
This page has to display the customer's profile image and to allow to change it, uploading the selected one to Firebase storage and the URI referement to the Firebase Realtime Database.
What I did:
The CustomerMainActivity has a bottom navigation with four tab. One is for the customer profile, so it hosts the CustomerProfileFragment that is shown below. The layout of the fragment has an ImageView (ivCustomerProfile) for...