memory leaks can be tough, especially on mobile. In addition to what you’ve tried, make sure to remove any unused event listeners, use smart pointers like TSharedPtr
, and profile with stat memory
for insights. Adjusting garbage collection frequency can help, and check for static variables that may retain objects. Testing on different devices can also reveal patterns, so explore Unreal’s mobile memory management docs for more tips.