File tree Expand file tree Collapse file tree 3 files changed +10
-8
lines changed
src/main/kotlin/com/androidvip/sysctlgui/ui/params/user Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ android {
17
17
applicationId = AppConfig .appId
18
18
minSdk = AppConfig .minSdkVersion
19
19
targetSdk = AppConfig .targetSdkVersion
20
- versionCode = 15
21
- versionName = " 2.2.1 "
20
+ versionCode = 16
21
+ versionName = " 2.2.2 "
22
22
vectorDrawables.useSupportLibrary = true
23
23
resourceConfigurations.addAll(listOf (" en" , " de" , " pt-rBR" ))
24
24
javaCompileOptions {
Original file line number Diff line number Diff line change @@ -128,12 +128,14 @@ private fun SwipeToDismissContent(
128
128
val currentParam by rememberUpdatedState(newValue = param)
129
129
val dismissState = rememberSwipeToDismissBoxState(
130
130
confirmValueChange = {
131
- return @rememberSwipeToDismissBoxState if (it == SwipeToDismissBoxValue .EndToStart ) {
132
- onDelete(currentParam)
133
- true
134
- } else {
135
- false
131
+ fun getResultFromValueChange (): Boolean {
132
+ if (it == SwipeToDismissBoxValue .EndToStart ) {
133
+ onDelete(currentParam)
134
+ return true
135
+ }
136
+ return false
136
137
}
138
+ getResultFromValueChange()
137
139
}
138
140
)
139
141
Original file line number Diff line number Diff line change 1
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
2
plugins {
3
- id(" com.google.devtools.ksp" ) version " 1.9.10 -1.0.13 " apply false
3
+ id(" com.google.devtools.ksp" ) version " 1.9.24 -1.0.20 " apply false
4
4
}
5
5
6
6
buildscript {
You can’t perform that action at this time.
0 commit comments