@HiltViewModel
class MainViewModel @Inject constructor(
private val repository: Repository
): ViewModel() {
// Some code
}
Hilt의 @ViewModelInject deprecated 문제
-> @Inject로 변경 후 @HiltViewModel 를 추가하여 해결
'Android > Android' 카테고리의 다른 글
[Android] 앱 삭제 후 재설치해도 데이터가 남아있는 문제 (0) | 2022.01.19 |
---|---|
[Android] RecyclerView DiffUtil (1) | 2021.09.16 |
[Android] Databinding error : cannot find symbol (0) | 2021.09.03 |
댓글