Rajapandian
Rajapandian

Reputation: 9317

How to identify Memory Leaks in Android?

I have developed a simple application before testing it i want to check whether any memory leaks are there in the application. I don't know how to identify the leaks in Android. I am using Eclipse IDE for development.

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

Upvotes: 5

Views: 2986

Answers (2)

Kevin Bradshaw
Kevin Bradshaw

Reputation: 6427

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

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

Kev

Upvotes: -1

Related Questions