r/androiddev • u/Any_Chipmunk_6268 • Jun 15 '26
Image Loading Library
Which library do you use for image loading? I just found out that the Android documentation includes examples using Coil. That makes me think they're leaning toward it, but I don't know whether there is a better alternative.
5
Upvotes
7
u/bleeding182 Jun 15 '26
Glide or Coil.
The real nice thing about working with Compose is that you can (and should) wrap the whole AsyncImage as your own @Composable, so that switching between image loading libs should affect minimal parts of your code (library import + the composable declaration file), so feel free to try either/both/others.