DISCLAIMER: This post is only for people who know their way around computers and Android stuff. If terms like root and ADB don't mean anything to you, then this guide is not for you.
Hello there, so I was bored again and made a convertor for transferring saves between platforms.
First of all where are Android saves and how to get them?
All saves are stored in a LevelDB database (https://en.wikipedia.org/wiki/LevelDB) which is located in a folder "/data/data/house.chores/app_webview/Default/Local Storage/leveldb
". Beware leveldb is a folder and this entire folder is the database.
To get a save we use ADB with root permissions (on some devices there should be USB debugging with root in developer settings, otherwise you will have to root your device) like this:
$ adb root restarting adbd as root $ adb pull "/data/data/house.chores/app_webview/Default/Local Storage/leveldb" /data/data/house.chores/app_webview/Default/Local Storage/leveldb/: 8 files pulled. 1.3 MB/s (95155 bytes in 0.068s)
To upload a save to device you will do something like:
$ adb push mysupersavefolder "/data/data/house.chores/app_webview/Default/Local Storage/" mysupersavefolder/: 5 files pushed. 1.7 MB/s (48412 bytes in 0.027s) $ adb shell > cd "/data/data/house.chores/app_webview/Default/Local Storage/" > ls -l total 6 drwx------ 2 u0_a216 u0_a216 3452 2025-06-05 20:59 leveldb drwxrwx--x 2 system system 3452 2025-06-05 21:02 mysupersavefolder > rm -fr leveldb > mv mysupersavefolder leveldb > chown -R u0_a216:u0_a216 leveldb > exit
As you can see it is a bit more complicated, because you need to make sure the folder is owned by the right user. u0_a216 is just an example make sure to replace it with whatever ls -l gives you.
And now how to convert?
The content of leveldb folder isn't exactly .rpgsave (the save file format on Windows) so we need to convert it. I wrote a python script that will do it: https://mega.nz/file/w6pVjJrD#j3qge-TczTuK2EK8kkdWOdh4VRyfg_HY_pbJRu2_2Ws
You just first need to install leveldb library:
$ pip install leveldb
And then you can convert from PC to Android like this:
$ python HouseChores_convert.py pc2an HouseChores/www/save mysupersavefolder
And vice versa:
$ python HouseChores_convert.py an2pc mysupersavefoder HouseChores/www/save
I understand this guide is not very user friendly, but for the tech savvy nerds who like 696E63657374 it should be easy enough.
P.S.: Devs if you are reading this, please contact me at admin@wildangelcult.com, I just want to tell you how awesome this game is and ask some questions.