Skip to content

Commit

Permalink
Chore: Bump dependencies and refactor NotificationScreenViewModel
Browse files Browse the repository at this point in the history
This commit updates several dependencies and refactors `NotificationScreenViewModel`:

- Updates Gradle to version 8.12.1.
- Updates Kotlin to version 2.1.10.
- Updates kamel-image to version 1.0.3.
- Updates about-libraries to version 11.5.0.
- Updates material-kolor to version 2.0.1.
- Adds a TODO to `NotificationScreenViewModel` to consider making the `groupedList` empty if `groupedListState` is false.
  • Loading branch information
jacobrein committed Jan 27, 2025
1 parent 804eb46 commit d2b5087
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ class NotificationScreenViewModel(
.sortedByDescending { it.second.size }
}

//TODO: Maybe make the groupedList empty if it's false?
val groupedListState = mutableStateMapOf(
*sourceRepository.list.map { it.apiService.serviceName to mutableStateOf(false) }.toTypedArray()
)
Expand Down
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ blurhash = "0.4.0-SNAPSHOT"
generativeai = "0.9.0"
gradle = "8.7.3"

kotlin = "2.1.0"
kotlin = "2.1.10"
kspVersion = "2.1.0-1.0.29"

androidxBaselineprofileGradlePlugin = "1.3.3"
Expand All @@ -14,8 +14,8 @@ easylauncher = "6.4.0"
firebaseCrashlyticsGradle = "3.0.2"
googleServices = "4.4.2"
haze = "1.2.2"
kamelImage = "1.0.2"
latestAboutLibsRelease = "11.4.0"
kamelImage = "1.0.3"
latestAboutLibsRelease = "11.5.0"
coroutinesVersion = "1.10.1"
glideVersion = "4.16.0"
pagecurl = "1.5.1"
Expand Down Expand Up @@ -44,7 +44,7 @@ compose3Version = "1.3.0"
compose3CommonVersion = "1.0.0-alpha01"
compose3AdaptiveVersion = "1.1.0-alpha02"
composeBomVersion = "2025.01.00"
materialKolor = "2.0.0"
materialKolor = "2.0.1"
firebaseKtx = "0.2.1"

googlePerformancePlugin = "1.4.2"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit d2b5087

Please sign in to comment.