I'm creating an app that should download a big number of JSON file and for the first start, I'm thinking to insert these file inside app folder. In this way when users download app, it's not necessary download at first time these file and I can populate the DB offline. Then, (some hours for example), this app download new files (in background download, parse and update the DB) and it has all data updated. This is perfect, but it has a BIG problem: If user delete app and download it another time (after a week for example), he can view old data; what can be the solution for this "problem"?
thanks