Kotlin Glide gives the error: Request threw uncaught throwable

Kotlin Glide gives the error: Request threw uncaught throwable

我正在尝试将图像从 Firebase 加载到图像视图中。 我的图像在 (test.jpg) 的文件夹 (products) 中的 Firestore 中 我尝试使用以下代码将此图像加载到图像视图中:

    val imageView = findViewById<ImageView>(R.id.image)
    val storageref = Firebase.storage.reference
    val path = storageref.child("products")
    val LoadImage = "test.jpg"
    val pathReference = path.child(LoadImage)
    Glide.with(this)
        .load(pathReference)
        .into(imageView)

这应该是正确的。但我确实收到此错误:

Request threw uncaught throwable com.bumptech.glide.Registry$NoModelLoaderAvailableException: Failed to find any ModelLoaders for model: gs://xxxx.appspot.com/products/test.jpg

有人知道我做错了什么吗?

我认为这是因为对存储的引用不是与 Glide 一起使用的有效 URL。

检查这个答案