I have a task to prepare application running on iOs and Android. Application will display data composed of text and images. All this data has to be downloaded durring firs application start. One of my first thought was to put all images in XML file as CDATA and encode in base64, but this would probably consume a lot of space, so my question is:
Should I concatenate all my images into one file (if so then how), download this file and “extract”(how ?) those images in my app?
Or maybe I should download many small images because it is not a problem and proper way of doing this?
Thanks!
I made a hierarchy of dirs and put my images there, every image and xml is a separate file.
My app downloads images and xml files at startup and this works.