-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ArrayIndexOutOfBoundsException in performTag method for Android #122
Comments
As it is |
@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?
The text was updated successfully, but these errors were encountered: