I need to save the photos that i have downloaded from firebase storage to the phone for not downloading them again and again every time the program runs.
url = "https://firebasestorage.googleapis.com/v0/b/****-*************.jpg"
Picasso.get().load(url).into(imageView);
I have no trouble viewing the picture but when I run the program again, I don't want the image to be reloaded. How can I achieve this?