File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
center/pending/src/main/java/com/idle/pending
worker/home/src/main/java/com/idle/worker/home Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ android {
1111 namespace = " com.idle.care"
1212
1313 defaultConfig {
14- versionCode = 19
15- versionName = " 1.2.4 "
14+ versionCode = 20
15+ versionName = " 1.2.5 "
1616 targetSdk = 34
1717
1818 testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ import com.idle.domain.usecase.profile.GetMyCenterProfileUseCase
1717import com.idle.navigation.DeepLinkDestination.CenterHome
1818import com.idle.navigation.DeepLinkDestination.CenterRegister
1919import com.idle.navigation.NavigationEvent
20+ import com.idle.navigation.NavigationHelper
2021import dagger.hilt.android.lifecycle.HiltViewModel
2122import kotlinx.coroutines.delay
2223import kotlinx.coroutines.flow.MutableStateFlow
@@ -33,7 +34,7 @@ class CenterPendingViewModel @Inject constructor(
3334 private val getMyCenterProfileUseCase : GetMyCenterProfileUseCase ,
3435 private val errorHelper : ErrorHelper ,
3536 private val eventHelper : EventHelper ,
36- private val navigationHelper : com.idle.navigation. NavigationHelper ,
37+ private val navigationHelper : NavigationHelper ,
3738) : ViewModel() {
3839 private val _status = MutableStateFlow (CenterManagerAccountStatus .UNKNOWN )
3940 val status = _status .asStateFlow()
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ import com.idle.domain.usecase.notification.GetUnreadNotificationCountUseCase
2323import com.idle.domain.usecase.profile.GetLocalMyWorkerProfileUseCase
2424import com.idle.navigation.DeepLinkDestination
2525import com.idle.navigation.NavigationEvent
26+ import com.idle.navigation.NavigationHelper
2627import dagger.hilt.android.lifecycle.HiltViewModel
2728import kotlinx.coroutines.flow.MutableStateFlow
2829import kotlinx.coroutines.flow.asStateFlow
@@ -43,7 +44,7 @@ class WorkerHomeViewModel @Inject constructor(
4344 private val jobPostingRepository : JobPostingRepository ,
4445 private val errorHelper : ErrorHelper ,
4546 private val eventHelper : EventHelper ,
46- val navigationHelper : com.idle.navigation. NavigationHelper ,
47+ val navigationHelper : NavigationHelper ,
4748) : ViewModel() {
4849 private val _profile = MutableStateFlow <WorkerProfile ?>(null )
4950 val profile = _profile .asStateFlow()
You can’t perform that action at this time.
0 commit comments