Cannot access 'androidx.room.RoomDatabase' which is a supertype of 'com.example.data.db.AppDatabase'. Check your module classpath for missing or conflicting dependencies
문제상황은 data 모듈에 생성한 Room의 Dao클래스가 presentation 모듈에서 사용하려 할 때 발생했다.
presentation은 data모듈에 종속되어있다. 그래서 data 모듈에서 implementation 한 것은 presentation에서 사용하기에 부적절하다. 그래서 api로 교체해주거나 의존성 주입을 해주어야한다.
api를 사용할 경우 모든 모듈에서 사용가능하다. 하지만 그 종속성이 변경 될 때 의존하는 모든 모듈들도 다시 컴파일해야한다.
https://stackoverflow.com/questions/53152796/androidx-room-unresolved-supertypes-roomdatabase