Skip to content

Commit

Permalink
new apk
Browse files Browse the repository at this point in the history
  • Loading branch information
T8RIN committed Mar 23, 2022
1 parent 8e40638 commit 2e779c2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ android {
applicationId = "ru.tech.firenote"
minSdk = 21
targetSdk = 32
versionCode = 3
versionName = "1.0.2"
versionCode = 4
versionName = "1.0.3"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

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": 3,
"versionName": "1.0.2",
"versionCode": 4,
"versionName": "1.0.3",
"outputFile": "app-release.apk"
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ fun NoteListScreen(
val repoList = state.data as List<Note>
var data = if (isDescendingFilter.value) {
when (filterType.value) {
1 -> repoList.sortedByDescending { (it.color ?: 0).priority }
1 -> repoList.sortedBy { (it.color ?: 0).priority }
2 -> repoList.sortedBy { it.timestamp }
else -> repoList.sortedBy { it.title }
}
} else {
when (filterType.value) {
1 -> repoList.sortedBy { (it.color ?: 0).priority }
1 -> repoList.sortedByDescending { (it.color ?: 0).priority }
2 -> repoList.sortedByDescending { it.timestamp }
else -> repoList.sortedByDescending { it.title }
}
Expand Down

0 comments on commit 2e779c2

Please sign in to comment.