From 15110e0f9c1a00ff0749d350cb6ede170274d152 Mon Sep 17 00:00:00 2001 From: tgyuuAn Date: Mon, 20 Jan 2025 13:06:50 +0900 Subject: [PATCH] =?UTF-8?q?[IDLE-000]=20=EA=B0=9C=EB=B0=9C,=20=EC=9A=B4?= =?UTF-8?q?=EC=98=81=20=EC=84=9C=EB=B2=84=20=ED=98=B8=EC=8A=A4=ED=8A=B8=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=20=EB=B0=8F=20=EC=BC=80=EC=96=B4=EB=B0=8B=20?= =?UTF-8?q?2=EC=B0=A8=EC=A0=84=20=EC=8B=9C=EC=9E=91...?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/build.gradle.kts | 4 ++-- .../src/main/java/com/idle/pending/CenterPendingViewModel.kt | 3 ++- .../src/main/java/com/idle/worker/home/WorkerHomeViewModel.kt | 3 ++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 7a026ddf..8b7ac1cd 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -11,8 +11,8 @@ android { namespace = "com.idle.care" defaultConfig { - versionCode = 19 - versionName = "1.2.4" + versionCode = 20 + versionName = "1.2.5" targetSdk = 34 testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" diff --git a/feature/center/pending/src/main/java/com/idle/pending/CenterPendingViewModel.kt b/feature/center/pending/src/main/java/com/idle/pending/CenterPendingViewModel.kt index 6da95d51..baeaa864 100644 --- a/feature/center/pending/src/main/java/com/idle/pending/CenterPendingViewModel.kt +++ b/feature/center/pending/src/main/java/com/idle/pending/CenterPendingViewModel.kt @@ -17,6 +17,7 @@ import com.idle.domain.usecase.profile.GetMyCenterProfileUseCase import com.idle.navigation.DeepLinkDestination.CenterHome import com.idle.navigation.DeepLinkDestination.CenterRegister import com.idle.navigation.NavigationEvent +import com.idle.navigation.NavigationHelper import dagger.hilt.android.lifecycle.HiltViewModel import kotlinx.coroutines.delay import kotlinx.coroutines.flow.MutableStateFlow @@ -33,7 +34,7 @@ class CenterPendingViewModel @Inject constructor( private val getMyCenterProfileUseCase: GetMyCenterProfileUseCase, private val errorHelper: ErrorHelper, private val eventHelper: EventHelper, - private val navigationHelper: com.idle.navigation.NavigationHelper, + private val navigationHelper: NavigationHelper, ) : ViewModel() { private val _status = MutableStateFlow(CenterManagerAccountStatus.UNKNOWN) val status = _status.asStateFlow() diff --git a/feature/worker/home/src/main/java/com/idle/worker/home/WorkerHomeViewModel.kt b/feature/worker/home/src/main/java/com/idle/worker/home/WorkerHomeViewModel.kt index dc9b32ab..65189951 100644 --- a/feature/worker/home/src/main/java/com/idle/worker/home/WorkerHomeViewModel.kt +++ b/feature/worker/home/src/main/java/com/idle/worker/home/WorkerHomeViewModel.kt @@ -23,6 +23,7 @@ import com.idle.domain.usecase.notification.GetUnreadNotificationCountUseCase import com.idle.domain.usecase.profile.GetLocalMyWorkerProfileUseCase import com.idle.navigation.DeepLinkDestination import com.idle.navigation.NavigationEvent +import com.idle.navigation.NavigationHelper import dagger.hilt.android.lifecycle.HiltViewModel import kotlinx.coroutines.flow.MutableStateFlow import kotlinx.coroutines.flow.asStateFlow @@ -43,7 +44,7 @@ class WorkerHomeViewModel @Inject constructor( private val jobPostingRepository: JobPostingRepository, private val errorHelper: ErrorHelper, private val eventHelper: EventHelper, - val navigationHelper: com.idle.navigation.NavigationHelper, + val navigationHelper: NavigationHelper, ) : ViewModel() { private val _profile = MutableStateFlow(null) val profile = _profile.asStateFlow()