Hello guys.
I used XML to store item data in my game as a database.
At the beginning, I tried to use “Application.dataPath”. However, it behaves differently among platforms.(e.g. It points to a compressed apk file on Android.)
Then I got “Application.persistentDataPath” which seems to be a location to store config files.
The problem is that the files in Application.persistentDataPath are not automatically deployed with the project to other platforms.
Where should I store these database like files which will be deployed with the project to any platform and are able to be accessed through the same script?
Thank you.