
British say mean understand

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]
java annotation processors are not allowed to change class structures.
Project lombok uses private APIs to do so and Room has no way of knowing about these changes.
They don’t work together