Skip to content

Instantly share code, notes, and snippets.

@communikein
Last active January 16, 2018 11:30
Show Gist options
  • Save communikein/aaf6dec594f35557c5cb34ea88e4f6e2 to your computer and use it in GitHub Desktop.
Save communikein/aaf6dec594f35557c5cb34ea88e4f6e2 to your computer and use it in GitHub Desktop.
@Database(entities = {Poi.class}, version = 1)
public abstract class PoisDatabase extends RoomDatabase {
public static final String NAME = "data_pois";
public abstract PoisDao poisDao();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment