I'm facing an issue with my Roku app. My app is crashing on all the devices with 1 GB RAM but it is working fine on devices with 1.5 RAM. The crash log is below:
Execution timeout (runtime error &h23)
Can anyone help me with this issue? How can I debug the actual root cause ?
Tried Profiler but didn't find anything useful.
To discourage heavy CPU usage on the render thread, the BrightScript runtime imposes timeouts. The proper way to handle these types of long-running CPU-heavy operations is to move the logic to a Task thread. Doing that will allow you to avoid the
Execution Timeout
errors as the execution timeout is not enforced in task threads.The reason you're seeing it on "devices with 1 GB RAM" is not the ram amount, but rather that those devices typically have slower CPUs, so you get less work done in the same global timeout length.