Skip to content

Instantly share code, notes, and snippets.

@dario61081
Created July 5, 2017 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dario61081/d1a880a58d3232fd9bad3fb12796c2ce to your computer and use it in GitHub Desktop.
Save dario61081/d1a880a58d3232fd9bad3fb12796c2ce to your computer and use it in GitHub Desktop.
Drop database SQLITE on android
try{
getApplicationContext().deleteDatabase("database.db");
Log.w(TAG, "onCreate: Delete Database");
} catch (Exception e){
Log.w(TAG, "onCreate: ",e );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment