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 {
1717 applicationId = AppConfig .appId
1818 minSdk = AppConfig .minSdkVersion
1919 targetSdk = AppConfig .targetSdkVersion
20- versionCode = 15
21- versionName = " 2.2.1 "
20+ versionCode = 16
21+ versionName = " 2.2.2 "
2222 vectorDrawables.useSupportLibrary = true
2323 resourceConfigurations.addAll(listOf (" en" , " de" , " pt-rBR" ))
2424 javaCompileOptions {
Original file line number Diff line number Diff line change @@ -128,12 +128,14 @@ private fun SwipeToDismissContent(
128128 val currentParam by rememberUpdatedState(newValue = param)
129129 val dismissState = rememberSwipeToDismissBoxState(
130130 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
136137 }
138+ getResultFromValueChange()
137139 }
138140 )
139141
Original file line number Diff line number Diff line change 11// Top-level build file where you can add configuration options common to all sub-projects/modules.
22plugins {
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
44}
55
66buildscript {
You can’t perform that action at this time.
0 commit comments