tags:

views:

156

answers:

1

I need to remove a file from the /data/data folder my app added. I am looking at the file with the DDMS in Eclipse.

If DDMS can't , how would I delete it otherwise?

+2  A: 
adb shell rm /path/to/file
zed_0xff