I want my users to be able to reset the application, then I need to reset the SQLite database that I have created. How can I do that? I want to reset the database or delete
Just drop tables from database
db.execSQL("DROP TABLE "+TABLENAME);
and again create the table in same database.