Hi, I’m switching from Unity to Defold and currently rewriting my quiz games.
On android, I want to use the save files created in game, but I just can’t get access to the directory they are saved to.
The ads plugin I use is saving in the same location as the save files, so I know it’s possible.
From the Unity manual it states
Application.persistentDataPath points to
/storage/emulated/<userid>/Android/data/<packagename>/files
on most devices (some older phones might point to location on SD card if present), the path is resolved using android.content.Context.getExternalFilesDir
Any ideas please?