I am developing an Android app (Similar to shopping cart) which tends to fetch images (of cart catalog items) and store it in local directory for later use. (Due to limited network connectivity, I can't load images from server every-time shopping cart opens)
I found a way to download images from server using Google's picasso library (this link).
Where I am stuck is that I don't know what path to specify to store the images. I intend to dedicate a directory for that, but not sure where to create that path (android app directory structure post installation?).
I wish to store it in the res directory in my app, but would that be the same once the application gets installed? If yes then how can I find that path at run-time?
If you have a better approach to do this, I am open to suggestions.
Thank You.