Sorry for the noob question. I am still pretty new to Android development.
I am currently working on an Android app that was designed to pull some images from a zip file sitting in the Assets directory. The original goal, it seems, was to have the app check a server to see if the zip had been updated, and then download the new zip in the case that it had.
The problem is that the Assets directory, if I understand correctly, is read only.
The thing is- I still need to be able to follow their original design of checking the server for an update to this file and downloading the new one. Since the file is hefty in size, simply downloading it to memory every time isn't really feasible. So, with that said, I need somewhere static to download it to so that I can tell the app at start up to look there first, and if that is empty then use the backups in Assets.
Is the root folder of the app the best place to download this file, which will remain indefinitely, possibly be replaced often and be read from on every run? Or is that against standard design procedures?
Thanks!