Android: How to obtain data/anr/traces.txt from Samsung Galaxy Tab

android

My application gives an anr while debugging on my Samsung Galaxy Tab. The device is viewable in DDMS in Eclipse, and I can browse the sdcard with the DDMS file explorer. But I cannot browse into the data directory (when I click the drop down arrow next to this directory, it appears the directory is open). Any tips how I can obtain the file?

Best Answer

You can fetch the file using the following command:

adb pull /data/anr/traces.txt

Hope this helps, Francisco.