Skip to content

Commit d58a12d

Browse files
🤖 Update Dependencies (#1661)
Updated depedencies
2 parents 488113f + 51572fd commit d58a12d

79 files changed

Lines changed: 1275 additions & 962 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

‎JetLagged/app/src/androidTest/java/com/example/jetlagged/AppTest.kt‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.example.jetlagged
1818

1919
import androidx.compose.ui.test.assertIsDisplayed
20-
import androidx.compose.ui.test.junit4.createComposeRule
20+
import androidx.compose.ui.test.junit4.v2.createComposeRule
2121
import androidx.compose.ui.test.onNodeWithText
2222
import com.example.jetlagged.ui.theme.JetLaggedTheme
2323
import org.junit.Before

‎JetLagged/app/src/main/java/com/example/jetlagged/sleep/JetLaggedTimeGraph.kt‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ import androidx.compose.ui.Modifier
3636
import androidx.compose.ui.draw.drawBehind
3737
import androidx.compose.ui.geometry.CornerRadius
3838
import androidx.compose.ui.graphics.Brush
39+
import androidx.compose.ui.platform.LocalLocale
3940
import androidx.compose.ui.text.style.TextAlign
4041
import androidx.compose.ui.unit.dp
4142
import com.example.jetlagged.BasicInformationalCard
@@ -108,7 +109,7 @@ private fun JetLaggedTimeGraph(sleepGraphData: SleepGraphData, modifier: Modifie
108109
private fun DayLabel(dayOfWeek: DayOfWeek) {
109110
Text(
110111
dayOfWeek.getDisplayName(
111-
TextStyle.SHORT, Locale.getDefault(),
112+
TextStyle.SHORT, LocalLocale.current.platformLocale,
112113
),
113114
Modifier
114115
.height(24.dp)

‎JetLagged/build.gradle.kts‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ plugins {
1818
alias(libs.plugins.gradle.versions)
1919
alias(libs.plugins.version.catalog.update)
2020
alias(libs.plugins.android.application) apply false
21-
alias(libs.plugins.kotlin.android) apply false
2221
alias(libs.plugins.kotlin.parcelize) apply false
2322
alias(libs.plugins.compose) apply false
2423
alias(libs.plugins.spotless) apply false

‎JetLagged/gradle/libs.versions.toml‎

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
[versions]
22
accompanist = "0.37.3"
3-
android-material3 = "1.14.0-alpha09"
4-
androidGradlePlugin = "9.0.1"
3+
android-material3 = "1.14.0-beta01"
4+
androidGradlePlugin = "9.2.0"
55
androidx-activity-compose = "1.13.0"
66
androidx-appcompat = "1.7.1"
7-
androidx-compose-bom = "2026.03.00"
7+
androidx-compose-bom = "2026.04.01"
88
androidx-constraintlayout = "1.1.1"
99
androidx-core-splashscreen = "1.2.0"
10-
androidx-corektx = "1.17.0"
10+
androidx-corektx = "1.18.0"
1111
androidx-glance = "1.1.1"
1212
androidx-lifecycle = "2.8.2"
1313
androidx-lifecycle-compose = "2.10.0"
1414
androidx-lifecycle-runtime-compose = "2.10.0"
15-
androidx-navigation = "2.9.7"
15+
androidx-navigation = "2.9.8"
1616
androidx-palette = "1.0.0"
1717
androidx-test = "1.7.0"
1818
androidx-test-espresso = "3.7.0"
1919
androidx-test-ext-junit = "1.3.0"
2020
androidx-test-ext-truth = "1.7.0"
21-
androidx-tv-foundation = "1.0.0-alpha12"
21+
androidx-tv-foundation = "1.0.0-rc01"
2222
androidx-tv-material = "1.0.1"
23-
androidx-wear-compose = "1.5.6"
23+
androidx-wear-compose = "1.6.1"
2424
androidx-window = "1.5.1"
2525
androidxHiltNavigationCompose = "1.3.0"
2626
androix-test-uiautomator = "2.3.0"
@@ -29,27 +29,27 @@ coil = "2.7.0"
2929
compileSdk = "36"
3030
coroutines = "1.10.2"
3131
google-maps = "20.0.0"
32-
gradle-versions = "0.53.0"
32+
gradle-versions = "0.54.0"
3333
hilt = "2.59.2"
3434
hiltExt = "1.3.0"
3535
horologist = "0.7.15"
3636
jdkDesugar = "2.1.5"
3737
junit = "4.13.2"
38-
kotlin = "2.3.10"
39-
kotlinx-serialization-json = "1.10.0"
38+
kotlin = "2.3.21"
39+
kotlinx-serialization-json = "1.11.0"
4040
kotlinx_immutable = "0.4.0"
41-
ksp = "2.3.6"
42-
maps-compose = "8.2.0"
41+
ksp = "2.3.7"
42+
maps-compose = "8.3.0"
4343
# @keep
4444
minSdk = "23"
4545
okhttp = "5.3.2"
4646
play-services-wearable = "19.0.0"
4747
robolectric = "4.16.1"
48-
roborazzi = "1.59.0"
48+
roborazzi = "1.60.0"
4949
rome = "2.1.0"
5050
room = "2.8.4"
5151
secrets = "2.0.1"
52-
spotless = "8.2.1"
52+
spotless = "8.4.0"
5353
# @keep
5454
targetSdk = "33"
5555
version-catalog-update = "1.1.0"
-10.3 KB
Binary file not shown.
Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,7 @@
1-
# Copyright 2023 The Android Open Source Project
2-
#
3-
# Licensed under the Apache License, Version 2.0 (the "License");
4-
# you may not use this file except in compliance with the License.
5-
# You may obtain a copy of the License at
6-
#
7-
# http://www.apache.org/licenses/LICENSE-2.0
8-
#
9-
# Unless required by applicable law or agreed to in writing, software
10-
# distributed under the License is distributed on an "AS IS" BASIS,
11-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12-
# See the License for the specific language governing permissions and
13-
# limitations under the License.
14-
151
distributionBase=GRADLE_USER_HOME
162
distributionPath=wrapper/dists
17-
distributionSha256Sum=a17ddd85a26b6a7f5ddb71ff8b05fc5104c0202c6e64782429790c933686c806
18-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
196
zipStoreBase=GRADLE_USER_HOME
207
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)