java.lang.StackOverflowError: stack size 8MB

me aparece este error al intentar observar el desarrollo de mi aplicacion
java.lang.StackOverflowError: stack size 8MB

It may be a loop which is not ending.Please send a few relevant pictures of the blocks

Typically, you’ll get a stack overflow if you are recursively calling a function and either don’t have an escape or you call it too many times (the stack is finite, and every active function call consumes some of it) even if it would otherwise terminate.
Reference from link

1 Like

excelente , muchas gracias entendi lo que sucedia, tenia una referencia circular