File tree Expand file tree Collapse file tree 5 files changed +8
-9
lines changed
build-logic/src/main/kotlin/com/nexters/ilab/android
core/ui/src/main/kotlin/com/nexters/ilab/core/ui/component
home/src/main/kotlin/com/nexters/ilab/android/feature/home
login/src/main/kotlin/com/nexters/ilab/android/feature/login Expand file tree Collapse file tree 5 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 11
11
12
12
<application
13
13
android : name =" .ILabApplication"
14
- android : allowBackup =" true "
14
+ android : allowBackup =" false "
15
15
android : dataExtractionRules =" @xml/data_extraction_rules"
16
16
android : fullBackupContent =" @xml/backup_rules"
17
17
android : icon =" @mipmap/ic_launcher"
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ internal object ApplicationConfig {
4
4
const val MinSdk = 26
5
5
const val TargetSdk = 34
6
6
const val CompileSdk = 34
7
- const val VersionCode = 3
8
- const val VersionName = " 1.0.2 "
7
+ const val VersionCode = 4
8
+ const val VersionName = " 1.0.3 "
9
9
val JavaVersion = org.gradle.api.JavaVersion .VERSION_17
10
10
const val JavaVersionAsInt = 17
11
11
}
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ fun BackgroundImage(
97
97
resId : Int ,
98
98
contentDescription : String ,
99
99
modifier : Modifier = Modifier ,
100
- contentScale : ContentScale = ContentScale .Fit ,
100
+ contentScale : ContentScale = ContentScale .Crop ,
101
101
) {
102
102
if (LocalInspectionMode .current) {
103
103
Box (modifier = Modifier .fillMaxSize())
Original file line number Diff line number Diff line change @@ -71,7 +71,6 @@ import com.nexters.ilab.core.ui.component.PagerIndicator
71
71
import com.nexters.ilab.core.ui.component.ServerErrorDialog
72
72
import com.nexters.ilab.core.ui.component.TopAppBarNavigationType
73
73
74
- // TODO 하단 스타일과 스타일 입력 화면 연동
75
74
@Composable
76
75
internal fun HomeRoute (
77
76
padding : PaddingValues ,
Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ internal fun LoginRoute(
74
74
resource.getString(R .string.unknown_error_message)
75
75
}
76
76
}
77
+
77
78
is SocketTimeoutException -> resource.getString(R .string.server_error_message)
78
79
else -> resource.getString(R .string.unknown_error_message)
79
80
},
@@ -139,10 +140,6 @@ internal fun LoginScreen(
139
140
onLoginClick : () -> Unit ,
140
141
) {
141
142
Box (modifier = Modifier .fillMaxSize()) {
142
- if (uiState.isLoading) {
143
- LoadingIndicator (modifier = Modifier .fillMaxSize())
144
- }
145
-
146
143
BackgroundImage (
147
144
resId = R .drawable.bg_login_screen,
148
145
contentDescription = " Background Image for Login Screen" ,
@@ -153,6 +150,9 @@ internal fun LoginScreen(
153
150
LoginContent (
154
151
onLoginClick = onLoginClick,
155
152
)
153
+ if (uiState.isLoading) {
154
+ LoadingIndicator ()
155
+ }
156
156
}
157
157
}
158
158
You can’t perform that action at this time.
0 commit comments