Привет EveryOne Я хочу установить изображение из firebase в режиме просмотра изображений. Я попробовал код, предложенный Google, но у меня проблема с GlideApp, и изображение не отображается
// Reference to an image file in Cloud Storage
StorageReference storageReference = FirebaseStorage.getInstance().getReference()
// ImageView in your Activity
ImageView imageView = findViewById(R.id.imageView);
// Download directly from StorageReference using Glide
// (See MyAppGlideModule for Loader registration)
GlideApp.with(this /* context */)
.load(storageReference)
.into(imageView);