반응형
Kotiln으로 작업도중 다음과 같은에러가 발생했습니다.
Could not deserialize object. Class com.example.app.Account does not define a no-argument constructor. If you are using ProGuard, make sure these constructors are not stripped
번역시
개체를 역 직렬화 할 수 없습니다. com.example.app.Account 클래스는 인수없는 생성자를 정의하지 않습니다. ProGuard를 사용하는 경우 이러한 생성자가 제거되지 않았는지 확인하십시오.
개체를 역 직렬화 할수 없다고 하고 ProGuard를 사용중이면 생성자가 제거 되지 않았는지 확인하라고 한다...
해결방법
data class Account (
val uid : String = "",
val name : String = "",
val profileUri : String = "",
val loginWith : String = ""
)
객체의 데이터를 초기화 해주니 해결!
반응형
'프로그래밍' 카테고리의 다른 글
[Kotlin] 1000자 단위 쉼표 붙이기 Extensions (0) | 2022.06.16 |
---|---|
안드로이드 setSystemUiVisibility() Deprecated로 statusBarColor 글자색 못바꿀때 (0) | 2021.07.21 |
안드로이드 앱 스크린샷 캡쳐 방지코드 (0) | 2021.04.06 |
안드로이드 앱 루팅 감지, 체크 코드 (0) | 2021.04.06 |