I for the first time use RoomDB in my project. I have the next question: where does the database file store, after i created the next ?
AppDatabase db = Room.databaseBuilder(getApplicationContext(),
AppDatabase.class, "database")
.allowMainThreadQueries()
.build();
P.S. Don`t pay attention on my mistakes.