Is there a way that we can have corona put the images in the documents directory instead of the resource directory? Currently any image that is compiled into an app is put in the resources directory. Any image you download would be put in the documents directory.
Here is my case:
if you update your images from the web, that would mean that there are two images, one in docs, and one in resources, since you can’t replace on in resources, and you can’t save something to resource after the fact.
The ResourceDirectory seems to be read-only at runtime.
By designating images to be stored in DocumentsDirectory by the compiler, they could be replaced easily at runtime and not have the old version and the newer version in the app space.
Thanks!
Stu