File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
src/main/java/org/aquamarine5/brainspark/chaoxingsignfaker/screen Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -37,8 +37,8 @@ android {
37
37
applicationId = " org.aquamarine5.brainspark.chaoxingsignfaker"
38
38
minSdk = 26
39
39
targetSdk = 35
40
- versionCode = 107000001
41
- versionName = " 1.7.0 -stable-250516 "
40
+ versionCode = 107010001
41
+ versionName = " 1.7.1 -stable-250518 "
42
42
43
43
testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
44
44
}
Original file line number Diff line number Diff line change @@ -13,7 +13,9 @@ import androidx.compose.animation.core.VisibilityThreshold
13
13
import androidx.compose.animation.core.spring
14
14
import androidx.compose.foundation.layout.Arrangement
15
15
import androidx.compose.foundation.layout.Column
16
+ import androidx.compose.foundation.layout.Spacer
16
17
import androidx.compose.foundation.layout.fillMaxSize
18
+ import androidx.compose.foundation.layout.height
17
19
import androidx.compose.foundation.layout.padding
18
20
import androidx.compose.foundation.lazy.LazyColumn
19
21
import androidx.compose.foundation.lazy.items
@@ -145,7 +147,7 @@ fun CourseListScreen(
145
147
}
146
148
}
147
149
val coroutineScope = rememberCoroutineScope()
148
- if (isForceInstall || ( newestVersionData != null && ! isNewVersionDialogDisplayed)) {
150
+ if (newestVersionData != null && (isForceInstall || ! isNewVersionDialogDisplayed)) {
149
151
onNewVersionAvailable()
150
152
isNewVersionDialogDisplayed = true
151
153
AlertDialog (onDismissRequest = {
@@ -196,6 +198,7 @@ fun CourseListScreen(
196
198
) {
197
199
198
200
Icon (painterResource(R .drawable.ic_user_lock), null )
201
+ Spacer (modifier= Modifier .height(8 .dp))
199
202
Text (" 受限于应用策略,当前账号无法使用此功能" )
200
203
}
201
204
} else {
You can’t perform that action at this time.
0 commit comments