What would be the best way to store a JSON object ...
# android
c
What would be the best way to store a JSON object to the internal storage? I’m a bit hesitant to toss it in SharedPrefs, but I don’t really want to deal with a database in this stage of the build since I will need to rewrite in later anyway. I’m currently leaning towards saving it to a file and reading it in when the app is started, but I’m not sure if there is a better way.