Android: tools to find memory leaks?

android, memory, memory-leaks, memory-management, valgrind

Solution

Watch this: http://www.youtube.com/watch?v=_CruQY55HOk

Then install MAT for Eclipse. Happy hounting!

Problem

Are there some useful tools to detect memory leaks in Android Java applications? Something similar to Valgrind where the place of creation of a non-freed object is shown?

Original source