You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Download directly from StorageReference using Glide
40
40
// (See MyAppGlideModule for Loader registration)
41
-
GlidApp.with(this/* context */)
41
+
GlideApp.with(this/* context */)
42
42
.load(storageReference)
43
43
.into(imageView);
44
44
```
45
45
46
+
If GlideApp is not an importable class, build your application first before trying to use. For more information, see Glide v4 ['Generated API'][generated-api] documentation.
47
+
46
48
Images displayed using `FirebaseImageLoader` are cached by their path in Cloud Storage, so
47
49
repeated loads will be fast and conserve bandwidth. For more information on caching in Glide,
48
50
see [this guide][glide-caching].
@@ -51,3 +53,4 @@ see [this guide][glide-caching].
0 commit comments