Memory leak : Applovin.impl.mediation.debugger #363
Replies: 3 comments 2 replies
-
Have the same problem with config as follows: |
Beta Was this translation helpful? Give feedback.
-
Hi, Could you add this code prior to initializing our SDK?
|
Beta Was this translation helpful? Give feedback.
-
Hey all - we pushed out v11.5.0 which fixes the aforementioned leak. |
Beta Was this translation helpful? Give feedback.
-
Summary: This memory leak was found using leakcanary. Actually, we've noticed a rise in out-of-memory crashes since the MAX migration. And this is only one example.
Problem Statement: With integration design, we clearly share an application context during initialization, however it seems that your process binder stub implementation is holding onto the reference and not releasing it when the app is closed. As a result, it GC couldn't able to clear this instance.
Workaround: I think a weak reference to the context in native is a likely workaround.
Beta Was this translation helpful? Give feedback.
All reactions