기-억하기 위해 기-록을

[Room] 스키마 확인 경고 본문

DB

[Room] 스키마 확인 경고

seopark 2020. 9. 9. 18:19

warning: Schema export directory is not provided to the annotation processor so we cannot export the schema. You can either provide `room.schemaLocation` annotation processor argument OR set exportSchema to false.

@Database(entities = {Todo.class}, version = 1,exportSchema = false)

스키마를 확인할 필요가 없으며 경고를 나타나지 않게 하기 위해서 exportSchema =false 추가해준다.