I built my program on Linux Debian, but it won’t start. Checked on HelloWorldDemo - it starts. What could be the problem? Everything works on Windows. Unlike HelloWorldDemo, I used an ImageButton and an two-dimensional array of images.
And when building, programs are assigned a library assignment and not an executable. But HelloWorldDemo works.
If it builds a library, it is probably a plugin (they are libraries after all).
If you find the application try to run it from the terminal.
There was some quirk with nautilus IIRC. Have a look in the forum search.
I don’t understand your response. Your problem is on Linux, debugging on Windows may provide insight, but certainly won’t help you diagnose the issue on Linux
Found a bug. The problem is in the random function rand(), which I used. On Windows it gives a maximum of 32767, and on Linux about 2147483639. Because of this, the number exceeded the size of the array.