Images are not showing from Firebase Storage
package com.example.chatapp.ui
class ChatActivity : AppCompatActivity() {
private val db = FirebaseFirestore.getInstance()
private val usersRef: CollectionReference = db.collection("users_collection")
private val messagesRef: CollectionReference = db.collection("messages_collection")
private lateinit var sendButton: Button
private lateinit var editTextMessage: EditText
private lateinit var messagesAdaptor: MessagesAdaptor
private lateinit var...