Reputation: 192
I have an ebook app. After opening several chapters and images the device kills the app after overloading the memory. When jumping from one chapter to another, I receive the following:
W/System: A resource failed to call release
. I saw some answers on other questions on stack but nothing really helpful.
Upvotes: 5
Views: 14694
Reputation: 1670
This error is mostly due to a memory leak caused by your app or packages your app use. You can find out what's causing the leak using dart devtools.
Find out more on how to find the leaks here:
https://stackoverflow.com/a/62471179/10672131
Upvotes: 5