I am starting to move my game from Unity to Defold (because the app size).
As my game is already published and have more than 500 users, that already make progress (Stars and new Scenes).
Do you know how the Playerprefs is serialized to disk (ie in which format) and to what filename? You can read pretty much any format using the Defold io.* functions, but the typical save data format is serialized Lua tables using sys.save() and sys.load().
“On Android they are stored in your phone’s internal memory in /data/data/appname/shared_prefs/appname.xml
Where appname is the full package identifier e.g. com.mycomany.example”
“On iOS devices, the PlayerPrefs can be found in your app’s plist file. It’s located at: /Apps/ your app’s folder /Library/Preferences/ your app’s .plist
I used a free MacOS app called iExplorer to find and verify any changes I make to the PlayerPrefs on my iPad app.”
Thank you, I will keep it to go further in the future, as now I am fighting with png drag.