Android: Delete entire database
问题 I would like to delete a complete database created by my application. Do you know any adb command, or android sentence to do it? 回答1: I think you need to start up your emulator with the command: -wipe-data 回答2: You can run the command: adb -s emulator-5554 shell (or whatever port you use) cd /data/data/<packagename>/databases/ By typing ls, you will see the databases created and you can remove the one you want with rm rm myapp.db See more here 回答3: Also, in Eclipse you can go to "Window ->