You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are you starting or canceling new requests when other requests complete? To do so you'd either have to be starting or canceling requests in a custom Target or RequestListener.
If I understand correctly this happens when one thread add item to queue while other thread is in progress of resuming (technically iterating through map)
All of these methods are only called on the main thread. The concurrent modification exception occurs because calling resume on a request() either adds or removes an existing request from the tracker. I don't think Glide does this by default, but if you start or cancel a request when another request finishes, that's one way this might happen.
I have a scroll listener that pauses/resumes request loading when
ListView
is flinged.And from time to time I keep getting crash like this:
Using version 3.4.0.
The text was updated successfully, but these errors were encountered: