Skip to content

Commit

Permalink
release: [2.2.2] versionCode 16
Browse files Browse the repository at this point in the history
Signed-off-by: lennoard <lennoardrai@gmail.com>
  • Loading branch information
Lennoard committed Jul 16, 2024
1 parent 0e19ca7 commit c4bd3e2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ android {
applicationId = AppConfig.appId
minSdk = AppConfig.minSdkVersion
targetSdk = AppConfig.targetSdkVersion
versionCode = 15
versionName = "2.2.1"
versionCode = 16
versionName = "2.2.2"
vectorDrawables.useSupportLibrary = true
resourceConfigurations.addAll(listOf("en", "de", "pt-rBR"))
javaCompileOptions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,14 @@ private fun SwipeToDismissContent(
val currentParam by rememberUpdatedState(newValue = param)
val dismissState = rememberSwipeToDismissBoxState(
confirmValueChange = {
return@rememberSwipeToDismissBoxState if (it == SwipeToDismissBoxValue.EndToStart) {
onDelete(currentParam)
true
} else {
false
fun getResultFromValueChange(): Boolean {
if (it == SwipeToDismissBoxValue.EndToStart) {
onDelete(currentParam)
return true
}
return false
}
getResultFromValueChange()
}
)

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.google.devtools.ksp") version "1.9.10-1.0.13" apply false
id("com.google.devtools.ksp") version "1.9.24-1.0.20" apply false
}

buildscript {
Expand Down

0 comments on commit c4bd3e2

Please sign in to comment.