I just started learning about memory management for Android. After doing a memory dump on the application I am working on and analyzing it with Eclipse Memory Analyzer, I found out that 37MB (out of the 50M retained memory) was taken by a "Remainder". This 50M figure matches my logcat retained memory, so I guess this Remainder does occupy some memory:
GC_CONCURRENT freed 12839K, 21% free 50038K/62908K, paused 7ms+15ms, total 144ms
Does somebody know what this Remainder is usually made of? Can this be a sign that I have some memory leak?