Is there a limit to the size of the JSON echo data?
How would I store a PDF or MP3 in the echo data for offline viewing?
Is there a limit to the size of the JSON echo data?
How would I store a PDF or MP3 in the echo data for offline viewing?
HI Everett,
It's not good way to store files in echo service.
You can upload needed files to project source. And then use it in offline mode.
For example you can upload to "files" source folder. http://prntscr.com/5n5066/direct
Then you access these files by URL: "files/fileName.txt"
Regards.
Does this mean that the user would have to download "all" of the files that I place in the "files" source folder?
I ask because some of the files are large video and audio files. I want the user to be able to download these, but I do not want to force the user to download them.
HI Everett,
Yes, all source files are build in into binary file.
For dynamic cache you can use custom implementation (save files locally on device and get this file when you need).
Example: http://stackoverflow.com/questions/24...
Regards.