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
Glide is releasing resources when new one is loaded or target cleared. Since we are using BackgroundManager and it has its own implementation for changing and updating images. We run into an issue where Glide already releases bitmap that is still displayed on background causing an app to crash. This is due to a fact that BackgroundManager uses delay to display background so that it is not switching constantly.
Solution here could be to manually handle Glide.clear events for target or to not use Glide for background images.
The text was updated successfully, but these errors were encountered:
Glide is releasing resources when new one is loaded or target cleared. Since we are using BackgroundManager and it has its own implementation for changing and updating images. We run into an issue where Glide already releases bitmap that is still displayed on background causing an app to crash. This is due to a fact that BackgroundManager uses delay to display background so that it is not switching constantly.
Solution here could be to manually handle
Glide.clear
events for target or to not use Glide for background images.The text was updated successfully, but these errors were encountered: