How to detect memory leak in Android?

I developed a simple application before testing it. I want to check for memory leaks in the application. I do not know how to detect leaks in Android. I am using the Eclipse IDE for development.

Is there a good introduction to finding memory leaks in Android apps somewhere?

+5
source share
2 answers

Once you test the application through Eclipse Emulator, you will be informed of any memory leaks by going through LogCat.

Any memory leaks will be highlighted in red as far as I know.

Kev

-1
source

All Articles