[ERROR/EXCEPTION] java.lang.IllegalArgumentExceptionNo destination with ID 2131361846 is on the NavController's back stack. The current destination is null
2023. 7. 14. 15:43ㆍAndroid/개발 CASE
[이슈] navigation 시 app crash
[원인] Lifecycle 이슈(NavGraphViewModel은 navigation graph에서 backstackEntry를 가져오는데 Activity에서 아직 Navigation.setGraph()가 불리기 전에 viewModel이 초기화되어 생기는 문제)
[재현 조건]
Activity 백그라운드에서 제거됨
Activity onCreate에서 Navigation.setGraph() 호출
NavGraphViewModel 사용
[해결]
- Activity.onCreate() 에서 Navigation.setGraph() -> activity_main.xml로 이동
- viewModel 접근을 onViewCreated()에서 하면 됨