How can I determine if my android app has memory leak? How can I determine if my android app has memory leak? android android

How can I determine if my android app has memory leak?


When I faced the same problem as you, I found LeakCanary. It helps to detect memory leaks during runtime in debug builds and provides comfortable UI for the stacktrace history. Here you can read more information about this tool for detecting memory leaks as well as some other useful hints for Android development: http://cases.azoft.com/4-must-know-tools-for-effective-android-development/.Hope it works for you and other mobile developers!


Generally if you use an application and it's accumulating memory

12 MB ... 13.5 MB...15 MB ... think about a cloud that accumulates humidity ... etc

If you see this pattern than your app has memory leak.

Another possibility is that you don't have a leak but you just use too many objects or too big objects or that you do not economize objects well enough. take under account that bitmaps are very expensive so handling bitmaps may not be so trivial in android which is memory and resource limited environment.