- Edited
I'm trying to export my game on Android.
Everything works except my app can't find/read a JSON file I use to store datas as a save file.
On my pc (Windows) the file is called quiz.json and I manage it as
const FILE = "user://quiz.json"
Then I read it with a load function. It works on Windows, but when I try to export my project on android it seems that the file is not exported.
I set Write User Directory
,Write External Storage
,even Read External Storage
permission.
I also added in Export>Resources>Filters for non-resource the field *.json
but the file is not exported anyway.
How can I export a file in android and read it?