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
We are encountering an ANR which appears to occur when Glide.with() is used to load images, with the stack trace pointing to delays during RequestManager initialization and decoding.
Here’s a relevant portion of the stack trace:
at com.bumptech.glide.request.RequestOptions.decodeTypeOf(RequestOptions.java:213)
at com.bumptech.glide.RequestManager.<clinit>(RequestManager.java:59)
at com.bumptech.glide.GeneratedRequestManagerFactory.build(GeneratedRequestManagerFactory.java:18)
at com.bumptech.glide.manager.LifecycleRequestManagerRetriever.getOrCreate(LifecycleRequestManagerRetriever.java:43)
at com.bumptech.glide.manager.RequestManagerRetriever.get(RequestManagerRetriever.java:158)
at com.bumptech.glide.Glide.with(Glide.java:540)
...
The ANR happens during image loading, likely due to some operations such as decoding or request initialization being performed on the main thread.
Glide Version: 4.15.1
Integration libraries: No
Device/Android Version: Based on Firebase Crashlytics data, the ANR occurs on multiple devices, with a significant number of occurrences on Oppo devices running Android 11.
Glide load line / GlideModule (if any) / list Adapter code (if any):
We have a helper function that is called from a fragment to load a profile image.
Almost the same problem ANR main thread, I'm trying to use workmanger. Am I using it right? Glide.with(context).asBitmap().load(logo).override(24,24).submit(24,24).get()
com.github.bumptech.glide:glide:5.0.0-rc01
We are encountering an ANR which appears to occur when Glide.with() is used to load images, with the stack trace pointing to delays during RequestManager initialization and decoding.
Here’s a relevant portion of the stack trace:
The ANR happens during image loading, likely due to some operations such as decoding or request initialization being performed on the main thread.
Glide Version: 4.15.1
Integration libraries: No
Device/Android Version: Based on Firebase Crashlytics data, the ANR occurs on multiple devices, with a significant number of occurrences on Oppo devices running Android 11.
Glide load line /
GlideModule
(if any) / list Adapter code (if any):We have a helper function that is called from a fragment to load a profile image.
Layout XML:
The text was updated successfully, but these errors were encountered: