MrFluffums
Member
- Dec 23, 2024
- 123
- 310
OK, I finally found what the issue was.I'll let you know
For one, un.rpy apparently can create a folder /game in C:\vntools\renpysdk, which will stop renpy
You must be registered to see the links
.This was solved by deleting C:\vntools\renpysdk\game.
Next issue which prevented android from starting was that the rpy files weren't packed to Android (build.classify('**.rpy', None)), plus the rpyc were set to be archived due to the rules in option.rpy. I used an emulator +
You must be registered to see the links
to read the logs of the emulator, and found it could not find start.rpy.I removed all build.classify and build.archive lines from options.rpy, and after that I could build an APK that works.
I also force recompiled the project, but I don't think that was necessary.
Could you try editing option.rpy and see if you can get it to work?