Skip to content

Commit

Permalink
chore(deps): bump the all-dependencies group with 4 updates (#82)
Browse files Browse the repository at this point in the history
* chore(deps): bump the all-dependencies group with 4 updates

Bumps the all-dependencies group with 4 updates: [com.google.devtools.ksp](https://github.com/google/ksp), androidx.compose:compose-bom, androidx.lifecycle:lifecycle-runtime-ktx and androidx.activity:activity-compose.


Updates `com.google.devtools.ksp` from 2.0.20-1.0.24 to 2.0.20-1.0.25
- [Release notes](https://github.com/google/ksp/releases)
- [Commits](google/ksp@2.0.20-1.0.24...2.0.20-1.0.25)

Updates `androidx.compose:compose-bom` from 2024.08.00 to 2024.09.00

Updates `androidx.lifecycle:lifecycle-runtime-ktx` from 2.8.4 to 2.8.5

Updates `androidx.activity:activity-compose` from 1.9.1 to 1.9.2

---
updated-dependencies:
- dependency-name: com.google.devtools.ksp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: androidx.compose:compose-bom
  dependency-type: direct:production
  dependency-group: all-dependencies
- dependency-name: androidx.lifecycle:lifecycle-runtime-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: androidx.activity:activity-compose
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>

* version bump and color fixes

* remove TODO

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Seamus Lowry <[email protected]>
  • Loading branch information
dependabot[bot] and seamuslowry committed Sep 8, 2024
1 parent 839b2ce commit b65c694
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ android {
applicationId "seamuslowry.daytracker"
minSdk 33
targetSdk 34
versionCode 36
versionName "0.30.1"
versionCode 37
versionName "0.30.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
useSupportLibrary true
Expand Down Expand Up @@ -70,8 +70,8 @@ dependencies {
implementation 'androidx.compose.material:material-icons-extended'
implementation "androidx.compose.material3:material3"
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.4'
implementation 'androidx.activity:activity-compose:1.9.1'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.5'
implementation 'androidx.activity:activity-compose:1.9.2'
implementation "com.google.dagger:hilt-android:$hilt_version"
implementation "androidx.hilt:hilt-navigation-compose:1.2.0"
implementation "androidx.room:room-runtime:$room_version"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ fun ItemEntry(
.placeholder(
visible = itemWithConfiguration == null,
highlight = PlaceholderHighlight.fade(),
color = MaterialTheme.colorScheme.surfaceVariant,
color = CardDefaults.cardColors().containerColor,
)
.animateContentSize(),
) {
Expand Down Expand Up @@ -276,7 +276,7 @@ fun AddConfigurationButton(
val mainDuration = 500
val extraDuration = 100
val cardColor by animateColorAsState(
targetValue = if (itemConfiguration != null) MaterialTheme.colorScheme.surfaceVariant else MaterialTheme.colorScheme.primary,
targetValue = if (itemConfiguration != null) CardDefaults.cardColors().containerColor else MaterialTheme.colorScheme.primary,
animationSpec = tween(durationMillis = mainDuration),
label = "cardColor",
)
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext {
compose_bom_version = '2024.08.00'
compose_bom_version = '2024.09.00'
hilt_version = '2.52'
room_version = '2.6.1'
}
Expand All @@ -12,5 +12,5 @@ plugins {
id 'org.jetbrains.kotlin.plugin.compose' version '2.0.20' apply false
id "com.diffplug.spotless" version "6.25.0" apply false
id 'com.google.dagger.hilt.android' version '2.52' apply false
id 'com.google.devtools.ksp' version "2.0.20-1.0.24" apply false
id 'com.google.devtools.ksp' version "2.0.20-1.0.25" apply false
}

0 comments on commit b65c694

Please sign in to comment.