Skip to content

Commit

Permalink
VersionCode: 53
Browse files Browse the repository at this point in the history
Removed unused code
Optimize clean all action
  • Loading branch information
Z-Siqi committed Feb 22, 2024
1 parent 71cc06f commit 3e398ae
Show file tree
Hide file tree
Showing 5 changed files with 172 additions and 228 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
applicationId "com.sqz.writingboard"
minSdk 29
targetSdk 34
versionCode 52
versionName "0.5.3-beta1"
versionCode 53
versionName "0.5.3"
}

buildTypes {
Expand Down
Binary file modified app/release/app-release.apk
Binary file not shown.
4 changes: 2 additions & 2 deletions app/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 52,
"versionName": "0.5.3-beta1",
"versionCode": 53,
"versionName": "0.5.3",
"outputFile": "app-release.apk"
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,14 +224,6 @@ fun WritingBoardLayout(navController: NavController, modifier: Modifier = Modifi
) {
WritingBoardText(scrollState)
}
if (valueState.cleanAllText) { //to reload texts
navController.navigate("UpdateScreen")
Handler(Looper.getMainLooper()).postDelayed(380) {
navController.popBackStack()
Log.i("WritingBoardTag", "Re-Opening WritingBoard Text")
valueState.cleanAllText = false
}
}
}
}
}
Expand Down
Loading

0 comments on commit 3e398ae

Please sign in to comment.