The game I’m working on has a lot of http.request calling to get files from a local server. Whenever there is an update on the server (from the files requested), if flushes. I’m not too worried for computer, but I looked, and saw is stored over 100 KB of just the same files with same files with some changes. I can just delete this on computer with code, but I’m not sure if mobile devices will allow that nor do I know how to get the app do delete cache.
Main question: Does http data flush to mobile devices? If so, is there a way I can delete it without having users manually do it or just stop it from flushing at all?
Thanks!