I\'ve just got my first SQLite database up and running but to reproduce it I wanted a quick way to clear the db file (so I can call my openOrCreateDatabase method a
openOrCreateDatabase
You can run the command:
adb -s emulator-5554 shell (or whatever port you use) cd /data/data//databases/
By typing ls, you will see the databases created and you can remove the one you want with rm
rm myapp.db
Thanks Deepak