message = "Maximum call stack size exceeded.";
does anyone know what this message means ??? :(((
thanks in advance
1 Answer
-
Android has limited stack size and if your source files are large, that stack size can become too small.
You can increase stack size by adding this line:
<property name="ti.android.threadstacksize" type="int">42000</property>
to tiapp.xml anywhere in root node. You can increase 42000 if you encounter similar or strange issues.