Skip to content

Instantly share code, notes, and snippets.

@nbhusare
Created October 21, 2018 21:24
Show Gist options
  • Save nbhusare/3a28581952732ec905456c95e4117325 to your computer and use it in GitHub Desktop.
Save nbhusare/3a28581952732ec905456c95e4117325 to your computer and use it in GitHub Desktop.
Android : Creating database
// Create in-memory database
Room.inMemoryDatabaseBuilder(context, ContactDb.class).build();
// Create file based database
Room.databaseBuilder(context, ContactDb.class, "contact-db").build();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment