Skip to content

Commit 15110e0

Browse files
committed
[IDLE-000] 개발, 운영 서버 호스트 변경 및 케어밋 2차전 시작...
1 parent d3dc5c9 commit 15110e0

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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"

feature/center/pending/src/main/java/com/idle/pending/CenterPendingViewModel.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import com.idle.domain.usecase.profile.GetMyCenterProfileUseCase
1717
import com.idle.navigation.DeepLinkDestination.CenterHome
1818
import com.idle.navigation.DeepLinkDestination.CenterRegister
1919
import com.idle.navigation.NavigationEvent
20+
import com.idle.navigation.NavigationHelper
2021
import dagger.hilt.android.lifecycle.HiltViewModel
2122
import kotlinx.coroutines.delay
2223
import 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()

feature/worker/home/src/main/java/com/idle/worker/home/WorkerHomeViewModel.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import com.idle.domain.usecase.notification.GetUnreadNotificationCountUseCase
2323
import com.idle.domain.usecase.profile.GetLocalMyWorkerProfileUseCase
2424
import com.idle.navigation.DeepLinkDestination
2525
import com.idle.navigation.NavigationEvent
26+
import com.idle.navigation.NavigationHelper
2627
import dagger.hilt.android.lifecycle.HiltViewModel
2728
import kotlinx.coroutines.flow.MutableStateFlow
2829
import 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()

0 commit comments

Comments
 (0)