Open UbadahJ opened 10 months ago
thread[CALL_STACK_INDEX].run { ....
As it is private const val CALL_STACK_INDEX = 9
for Android Module and all other modules it is private const val CALL_STACK_INDEX = 8
. So simply editing the constant CALL_STACK_INDEX
to the value 8
for Android / Java module should fix this crash.
@AAkira is this getting fixed? :)
Faced with same issue. Any updates?
Same issue for me, but it reproduces only for minified version of the app.
well, this was a complete waste of another couple of hours ...
this can also happen on the .d method call, at least in the minified version
Still the same...any updates here?
I am experiencing a recurring crash in my application, which seems to be related to an
ArrayIndexOutOfBoundsException
. The stack trace is as follows:Code Inspection: Upon reviewing the related code, I noticed the potential cause in the
performTag
function:Possible Solution: It appears that replacing
thread.size >= CALL_STACK_INDEX
withthread.size > CALL_STACK_INDEX
could resolve the issue.Question: Is this indeed a bug, or am I missing some other aspect of the implementation that could be causing this error?