Does anyone know how to reset the database everytime my application executes in real device ?
I currently have this code but it does not work...
public void doDBCheck()
{
try{
File file = new File(context.getExternalFilesDir(null).getAbsolutePath());
file.delete();
}catch(Exception ex)
{
}
}
Any solutions ?