[Android Archeitecture Components] 룸이 멀티 모듈 프로젝트에서 처리하면 빠져요.
3139 단어 Android
현상.
룸의 Embbeded에 모조한 필드를 더해서 다른 모듈을 사용하는 반을 사용하면build가 통과되지 않습니다.@Entity
class HogeEntity(
@Primarykey
val id: Long,
@Embedded
val hogeUser: HogeUser
)
// HogeEntityとは別のmoduleで定義
data class HogeUser(
val personId: PersonId,
val name: Name,
val height: Double,
val weight: Double,
val nickName: String
)
예를 들어 이런 반에서build을 시험해 보면 다음과 같은 오류가 발생할 수 있다Error: Entities and Pojos must have a usable public constructor. You can have an empty constructor or a constructor whose parameters match the fields (by name and type).
Tried the following constructors but they failed to match:
Error:HogeUser(PersonId,Name,double,double,java.lang.String) : [arg0 : null, arg1 : null, arg2 : null, arg3 : null, arg4 : null, arg5 : null]
회피책
@Entity
class HogeEntity(
@Primarykey
val id: Long,
@Embedded
val hogeUser: HogeUser
)
// HogeEntityとは別のmoduleで定義
data class HogeUser(
val personId: PersonId,
val name: Name,
val height: Double,
val weight: Double,
val nickName: String
)
Error: Entities and Pojos must have a usable public constructor. You can have an empty constructor or a constructor whose parameters match the fields (by name and type).
Tried the following constructors but they failed to match:
Error:HogeUser(PersonId,Name,double,double,java.lang.String) : [arg0 : null, arg1 : null, arg2 : null, arg3 : null, arg4 : null, arg5 : null]
다른 해결책이 있다면 알려주시면 좋겠네요
참고 자료
https://issuetracker.google.com/issues/67181813
https://stackoverflow.com/questions/47833645/android-room-multi-module-project-in-kotlin
Reference
이 문제에 관하여([Android Archeitecture Components] 룸이 멀티 모듈 프로젝트에서 처리하면 빠져요.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/atsuya046/items/758951313fd55f749900
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여([Android Archeitecture Components] 룸이 멀티 모듈 프로젝트에서 처리하면 빠져요.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/atsuya046/items/758951313fd55f749900텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)