Before I found out about that adb shell doesn't have the permission to do much with /data/data I was using my unrooted Verizon Droid for development of a content provider. How do I get rid of the database I created there? Is my best option writing a small app that drops the database?
A:
Any content in /data/data (or wherever else the permissions specify) can only be accessed by the application that owns those files (unless you specifically made something world writeable).
I'm not sure about the situation you have here. You have a file in /data/data? How was that created? Using an app you wrote? If you uninstall that app (adb uninstall com.package.app), all data in /data/data that belongs to this app will be destroyed as well.
EboMike
2010-08-22 16:56:37
That make sense.
Mark
2010-08-23 14:08:15