Hello :)
I just working on my quiz game and its gonna be pretty large with hundrets of topics and questions, BUT as it has grown over 100+ questions split in 10 topics, it starts to crash on android when the array gets filled.
When i tested with 30 Questions / 3 Topics in the beginning everything was running smooth.
So i think this is maybe too big for a android phone :/, any ideas how to use them without crashing when reaching over 100 questions or what mobile friendly i could use instead of these 3 Arrays ?:
Quiz_text = new string[1, 25, 17, 6];
Quiz_answere_number = new int[1, 25, 17, 1];
Quiz_size_number = new int[1, 25, 17, 1];
the array means [Language, Topic, Questions, Answere]
↧