feat(chat): 캐릭터 상세에서 채팅방 생성 후 ChatRoomActivity로 네비게이션 추가

- ChatRoomActivity에 EXTRA_ROOM_ID 및 newIntent 추가
- CharacterDetailActivity에서 chatRoomId 수신 시 화면 이동 처리
- 이벤트 소비 유지로 중복 네비게이션 방지
This commit is contained in:
2025-08-13 02:21:43 +09:00
parent 4eedecd1ce
commit 558f74d861
10 changed files with 150 additions and 6 deletions

View File

@@ -400,7 +400,7 @@ class AppDI(private val context: Context, isDebugMode: Boolean) {
factory { PointStatusRepository(get()) }
factory { HomeRepository(get()) }
factory { CharacterTabRepository(get()) }
factory { CharacterDetailRepository(get()) }
factory { CharacterDetailRepository(get(), get()) }
factory { TalkTabRepository(get()) }
}