Page 1 of 1

Echo data size constrains and offline data storage

Posted: Wed Dec 31, 2014 4:40 pm
by Everett Chad Nelson

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?


Echo data size constrains and offline data storage

Posted: Thu Jan 01, 2015 12:58 am
by Yurii Orishchuk

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.


Echo data size constrains and offline data storage

Posted: Mon Jan 05, 2015 9:35 pm
by Everett Chad Nelson

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.


Echo data size constrains and offline data storage

Posted: Tue Jan 06, 2015 12:22 am
by Yurii Orishchuk

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.