From 0523538ce136a52754ef7583dd4b2f5a9daeabb7 Mon Sep 17 00:00:00 2001 From: dongchyeon Date: Thu, 6 Jun 2024 23:38:20 +0900 Subject: [PATCH] =?UTF-8?q?Fix=20:=20=EB=B0=80=ED=81=AC=20->=20=ED=99=94?= =?UTF-8?q?=EC=9D=B4=ED=8A=B8=20=EC=99=80=EC=9D=B8,=20=EC=B4=88=EC=BD=9C?= =?UTF-8?q?=EB=A6=BF=20->=20=EB=A0=88=EB=93=9C=20=EC=99=80=EC=9D=B8=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/build.gradle.kts | 4 ++-- .../main/java/com/teamwiney/auth/signup/SignUpViewModel.kt | 4 ++-- .../mypage/src/main/java/com/teamwiney/mypage/MyPageScreen.kt | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index dbe19a25..85d74126 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -28,8 +28,8 @@ android { applicationId = "com.teamwiney.winey" minSdk = 24 targetSdk = 34 - versionCode = 3 - versionName = "1.0" + versionCode = 5 + versionName = "1.0.1" signingConfig = signingConfigs.getByName("debug") diff --git a/feature/auth/src/main/java/com/teamwiney/auth/signup/SignUpViewModel.kt b/feature/auth/src/main/java/com/teamwiney/auth/signup/SignUpViewModel.kt index 6e520620..15cb1436 100644 --- a/feature/auth/src/main/java/com/teamwiney/auth/signup/SignUpViewModel.kt +++ b/feature/auth/src/main/java/com/teamwiney/auth/signup/SignUpViewModel.kt @@ -73,8 +73,8 @@ class SignUpViewModel @Inject constructor( val selectedChocolate = currentState.favoriteTastes[0].signUpFavoriteItem.find { it.isSelected }?.keyword val tasteResultUrl = when (selectedChocolate) { - "MILK" -> "${AuthDestinations.SignUp.TASTE_RESULT}?taste=red" - else -> "${AuthDestinations.SignUp.TASTE_RESULT}?taste=white" + "MILK" -> "${AuthDestinations.SignUp.TASTE_RESULT}?taste=white" + else -> "${AuthDestinations.SignUp.TASTE_RESULT}?taste=red" } postEffect(SignUpContract.Effect.NavigateTo(tasteResultUrl)) diff --git a/feature/mypage/src/main/java/com/teamwiney/mypage/MyPageScreen.kt b/feature/mypage/src/main/java/com/teamwiney/mypage/MyPageScreen.kt index a1b5ef73..bf366411 100644 --- a/feature/mypage/src/main/java/com/teamwiney/mypage/MyPageScreen.kt +++ b/feature/mypage/src/main/java/com/teamwiney/mypage/MyPageScreen.kt @@ -419,7 +419,7 @@ fun MyProfileAppVersionItem() { ) Text( - text = "1.0", + text = "1.0.1", style = WineyTheme.typography.captionB1.copy( color = WineyTheme.colors.gray_800 )