I have such a function:
fun getPhotos(filePath: List<String>): List<Bitmap>
{
}
How should I download all the bitmaps without memory and performance issues? Is just using a Glide function in a loop for each String from the filePath list a good idea?