Im attempting to analyze a memory leak that has been driving me crazy for weeks, I found out about the eclipse MAT
tool that helps you to figure out what is wro
Just to be said: You don't explicitly need to convert the .hprof file using hprof-conv. MAT does this for you automatically - as described here. In Eclipse,
Sounds like you need to use the hprof-conv tool that's located in [Android-SDK]\platform-tools
.
To do this on Windows:
Press WINKEY+R and type in cmd
Type in:
cd "C:\android-sdk\platform-tools"
(or whichever directory contains your Android sdk)
Assuming you have your Dalvik file on the Desktop (I'm just guessing the directory), type in:
hprof-conv "C:\Users\Edmund\Desktop\heap-dump-tm-pid.hprof" "C:\Users\Edmund\Desktop\4mat.hprof"
This will generate the standard format HPROF file that you can use called 4mat.hprof