So I have some images in the cloud that I can access via direct url. I know the Picasso library can fetch that image from the url passed and then place it in an image view on the screen. But is it possible for it to fetch the image and instead of putting it in an image view to store it as a .jpg file in my drawable folder inside my project?
Reason I am asking is because I want to fetch a bunch of images from the internet to be used somewhere else later in the application and I'd like to refer them through drawables.
Update: I found a solution by using the fetch() method. With this I don't need to keep the images in drawables because it loads all my images from cache to memory for instant access.