I have a copy of engine on Android device. I do project->build, build is uploaded to device, a custom resource (a .txt file) listed in the game.project cannot be loaded - works on Windows.
I tested two versions of .txt file one very small and didn’t help.
I had a text file which was Unix (LF) and changed it to Windows (CR LF).
When it was LF the code worked, but when it was saved in an editor which made it CR LF it stopped working and I didn’t notice for a while until I tried to use the code again for a few hours wondering why unchanged code no longer worked… so pay attention to your text files!
:gmatch("(.-)\r\n")
Would be for Windows (CR LF) CR = \r; LF = \n; CRLF = \r\n