Room – Schema export directory is not provided to the annotation processor so we cannot export the schema
[code language=”java”]
@Database(entities = { YourEntity.class }, version = 1, exportSchema = false)
public abstract class AppDatabase extends RoomDatabase {
}
[/code]