I’d like to use a small local JSON config file with a few fields, so my app can read it and know what to do. This file will not be shipped as part of my app. The idea is that the user creates the file with the desired parameters, and transfer that file to a specific location on the device for my app to fetch it on startup. What would be the best/proper way to store the file so it is accessible for both the app and the final user? There is any path that is usually used for this?
I have worked before with json through http and with local jsons in the app assets folder, but I’ve never had the necessity of give the user access to create/modify the file.