Skip to content

Commit

Permalink
Merge branch 'main' into feat/dnd_library
Browse files Browse the repository at this point in the history
  • Loading branch information
seamuslowry committed Sep 8, 2024
2 parents 52df202 + b65c694 commit 33c3015
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 10 deletions.
18 changes: 15 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,28 @@

version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "saturday"
time: "03:00"
timezone: "America/New_York"
- package-ecosystem: "bundler" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
day: "saturday"
time: "03:00"
timezone: "America/New_York"
- package-ecosystem: "gradle"
directory: "/"
schedule:
interval: "weekly"
day: "saturday"
time: "03:00"
timezone: "America/New_York"
groups:
gradle-plugin-dependencies:
all-dependencies:
patterns:
- "com.android.application"
- "com.android.library"
- "*"
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ android {
applicationId "seamuslowry.daytracker"
minSdk 33
targetSdk 34
versionCode 37
versionCode 38
versionName "0.31.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
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 @@ -187,7 +187,7 @@ fun ItemEntry(
.placeholder(
visible = itemWithConfiguration == null,
highlight = PlaceholderHighlight.fade(),
color = MaterialTheme.colorScheme.surfaceVariant,
color = CardDefaults.cardColors().containerColor,
)
.animateContentSize(),
) {
Expand Down Expand Up @@ -316,7 +316,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 33c3015

Please sign in to comment.