When run on the local machine (standalone), all works without problems. When working through the (android) I get the connection error after 10 seconds of work.
Before this, it was a little hard to understand what the “NoResource” error meant, because the choice of wording suggests maybe a lack of system resources. In actual fact, it refers to the internals of unet running out of allocated resources (such as the maximum number of messages in buffers etc).
Most have found that increasing the maximum message count solves the issue that you are facing, however it’s important to note that if you’re seeing this error, you’re probably sending far too many messages over the network, or messages are piling up quicker than they can be processed. So i’d recommend looking at ensuring that you are sending as few messages as possible (with as little bytes as possible) over time, and consider upping your limits as a temporary solution.