I’m using parse.com to store a json file that contains a bunch of variables that my game uses. I can then update these variables while my app is live by simply updating the json file and having my app download the file periodically.
My question is, how can I limit my app to download the file only if the app doesn’t have the latest version? Currently I have the app request the file each time it starts up or resumes, but this would normally be way too often as I plan to update the file at most once a week. Since parse costs increase with the number of reqs. i’d like to be smarter about when I download the file.
I guess I need a version number check to sync with, but even checking a single variable would technically count as a req. on Parse. Do I need to check a version # on my own server or something similar?
Thanks for any help!
