Skip to content

Commit 2cb0979

Browse files
Update all dependencies
1 parent b78fc7a commit 2cb0979

File tree

7 files changed

+56
-56
lines changed

7 files changed

+56
-56
lines changed

Diff for: .github/workflows/build.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,22 @@ jobs:
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

2121
- name: Validate Gradle Wrapper
22-
uses: gradle/wrapper-validation-action@v1
22+
uses: gradle/wrapper-validation-action@v3
2323

2424
- name: Copy CI gradle.properties
2525
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
2626

2727
- name: Set up JDK 17
28-
uses: actions/setup-java@v3
28+
uses: actions/setup-java@v4
2929
with:
3030
distribution: 'zulu'
3131
java-version: 17
3232

3333
- name: Setup Gradle
34-
uses: gradle/gradle-build-action@v2
34+
uses: gradle/gradle-build-action@v3
3535

3636
- name: Check spotless
3737
run: ./gradlew spotlessCheck --init-script gradle/spotless-init.gradle.kts --no-configuration-cache

Diff for: .github/workflows/issues-stale.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
stale:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/stale@v3
10+
- uses: actions/stale@v9
1111
with:
1212
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
1313
days-before-stale: 30

Diff for: app/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ plugins {
1818
alias(libs.plugins.android.application)
1919
alias(libs.plugins.kotlin.android)
2020
alias(libs.plugins.kotlin.compose)
21-
kotlin("plugin.serialization") version "2.1.10"
21+
kotlin("plugin.serialization") version "2.1.20"
2222
}
2323

2424
android {

Diff for: gradle/libs.versions.toml

+47-47
Original file line numberDiff line numberDiff line change
@@ -14,50 +14,50 @@
1414
# limitations under the License.
1515
#
1616
[versions]
17-
agp = "8.8.1"
17+
agp = "8.9.1"
1818
fragmentCompose = "1.8.6"
19-
kotlin = "2.1.10"
20-
coreKtx = "1.15.0"
19+
kotlin = "2.1.20"
20+
coreKtx = "1.16.0"
2121
junit = "4.13.2"
2222
junitVersion = "1.2.1"
2323
espressoCore = "3.6.1"
24-
kotlinxSerializationJson = "1.8.0"
24+
kotlinxSerializationJson = "1.8.1"
2525
lifecycleRuntimeKtx = "2.8.7"
26-
activityCompose = "1.10.0"
27-
composeBom = "2025.02.00"
26+
activityCompose = "1.10.1"
27+
composeBom = "2025.04.00"
2828
appcompat = "1.7.0"
2929
material = "1.12.0"
30-
coil = "2.4.0"
31-
navigationCompose = "2.8.7"
32-
coroutines = "1.7.3"
33-
play-services-location = "21.1.0"
30+
coil = "2.7.0"
31+
navigationCompose = "2.8.9"
32+
coroutines = "1.10.2"
33+
play-services-location = "21.3.0"
3434

35-
accompanist = "0.32.0"
36-
androidx-datastore = "1.0.0"
37-
androidx-navigation = "2.7.7"
35+
accompanist = "0.37.2"
36+
androidx-datastore = "1.1.4"
37+
androidx-navigation = "2.8.9"
3838
androidx-window = "1.4.0-rc01"
3939
casa = "0.5.1"
40-
gradleDownloadTask = "4.1.2"
41-
ksp = "1.9.22-1.0.17"
40+
gradleDownloadTask = "5.6.0"
41+
ksp = "2.1.20-2.0.0"
4242
composeCompiler = "1.5.9"
43-
hilt = "2.48.1"
43+
hilt = "2.56.1"
4444
kotlin-serialization = "1.8.0"
4545
ktlint = "0.48.1"
4646
junit4 = "4.13.2"
47-
androidxEspresso = "3.5.1"
48-
androidxTestCore = "1.5.0"
49-
androidxTestExtJunit = "1.1.5"
50-
androidxTestExtTruth = "1.5.0"
51-
androidxTestRules = "1.5.0"
52-
androidxTestRunner = "1.5.2"
53-
androidxUiAutomator = "2.2.0"
54-
media3 = "1.5.0"
55-
constraintlayout = "2.1.4"
47+
androidxEspresso = "3.6.1"
48+
androidxTestCore = "1.6.1"
49+
androidxTestExtJunit = "1.2.1"
50+
androidxTestExtTruth = "1.6.0"
51+
androidxTestRules = "1.6.1"
52+
androidxTestRunner = "1.6.2"
53+
androidxUiAutomator = "2.3.0"
54+
media3 = "1.6.0"
55+
constraintlayout = "2.2.1"
5656
glide-compose = "1.0.0-beta01"
57-
glance = "1.1.0"
58-
tensorflowLite = "2.9.0"
57+
glance = "1.1.1"
58+
tensorflowLite = "2.17.0"
5959
tensorflowLiteGpuDelegatePlugin = "0.4.4"
60-
tensorflowLiteSupport = "0.4.2"
60+
tensorflowLiteSupport = "0.5.0"
6161

6262
[libraries]
6363
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
@@ -92,18 +92,18 @@ play-services-location = { module = "com.google.android.gms:play-services-locati
9292
# Core dependencies
9393
android-gradlePlugin = { module = "com.android.tools.build:gradle", version.ref = "agp" }
9494

95-
androidx-activity = "androidx.activity:activity-ktx:1.10.0"
95+
androidx-activity = "androidx.activity:activity-ktx:1.10.1"
9696

97-
androidx-core = "androidx.core:core-ktx:1.12.0"
98-
androidx-exifinterface = "androidx.exifinterface:exifinterface:1.3.7"
97+
androidx-core = "androidx.core:core-ktx:1.16.0"
98+
androidx-exifinterface = "androidx.exifinterface:exifinterface:1.4.0"
9999
# Fragment 1.7.0 alpha and Transition 1.5.0 alpha are required for predictive back to work with Fragments and transitions
100-
androidx-fragment = "androidx.fragment:fragment-ktx:1.7.0-alpha10"
101-
androidx-transition = "androidx.transition:transition-ktx:1.5.0-alpha06"
100+
androidx-fragment = "androidx.fragment:fragment-ktx:1.8.6"
101+
androidx-transition = "androidx.transition:transition-ktx:1.5.1"
102102
androidx-navigation-fragment = { module = "androidx.navigation:navigation-fragment", version.ref = "androidx-navigation" }
103103
androidx-navigation-testing = { module = "androidx.navigation:navigation-testing", version.ref = "androidx-navigation" }
104104
androidx-navigation-ui = { module = "androidx.navigation:navigation-ui", version.ref = "androidx-navigation" }
105-
androidx-lifecycle-viewmodel-compose = "androidx.lifecycle:lifecycle-viewmodel-compose:2.7.0"
106-
androidx-viewpager2 = "androidx.viewpager2:viewpager2:1.0.0"
105+
androidx-lifecycle-viewmodel-compose = "androidx.lifecycle:lifecycle-viewmodel-compose:2.8.7"
106+
androidx-viewpager2 = "androidx.viewpager2:viewpager2:1.1.0"
107107
accompanist-permissions = { module = "com.google.accompanist:accompanist-permissions", version.ref = "accompanist" }
108108
casa-base = { module = "com.google.android.catalog.framework:casa-base", version.ref = "casa" }
109109
casa-processor = { module = "com.google.android.catalog.framework:casa-processor", version.ref = "casa" }
@@ -143,34 +143,34 @@ androidx-test-runner = { group = "androidx.test", name = "runner", version.ref =
143143
androidx-test-uiautomator = { group = "androidx.test.uiautomator", name = "uiautomator", version.ref = "androidxUiAutomator" }
144144
junit4 = { group = "junit", name = "junit", version.ref = "junit4" }
145145
# Sample specific dependencies
146-
lottie = "com.airbnb.android:lottie:6.0.0"
146+
lottie = "com.airbnb.android:lottie:6.6.6"
147147
rxjava2-android = 'io.reactivex.rxjava2:rxandroid:2.1.1'
148-
androidx-work-runtime-ktx = "androidx.work:work-runtime-ktx:2.9.0"
149-
androidx-core-remoteviews = "androidx.core:core-remoteviews:1.0.0"
148+
androidx-work-runtime-ktx = "androidx.work:work-runtime-ktx:2.10.0"
149+
androidx-core-remoteviews = "androidx.core:core-remoteviews:1.1.0"
150150
androidx-glance-appwidget = {group = "androidx.glance", name = "glance-appwidget", version.ref = "glance"}
151151
androidx-glance-preview = {group = "androidx.glance", name = "glance-preview", version.ref = "glance"}
152152
androidx-glance-appwidget-preview = {group = "androidx.glance", name = "glance-appwidget-preview", version.ref = "glance"}
153153
androidx-glance-material3 = {group = "androidx.glance", name = "glance-material3", version.ref = "glance"}
154-
androidx-graphics-core = { group = "androidx.graphics", name = "graphics-core", version = "1.0.0-beta01" }
155-
androidx-startup = 'androidx.startup:startup-runtime:1.1.1'
154+
androidx-graphics-core = { group = "androidx.graphics", name = "graphics-core", version = "1.0.3" }
155+
androidx-startup = 'androidx.startup:startup-runtime:1.2.0'
156156
androidx-window = { module = "androidx.window:window", version.ref = "androidx-window" }
157157
androidx-window-java = { module = "androidx.window:window-java", version.ref = "androidx-window" }
158158
androidx-window-rxjava2 = { module = "androidx.window:window-rxjava2", version.ref = "androidx-window" }
159159
androidx-window-core = { module = "androidx.window:window-core", version.ref = "androidx-window" }
160160
androidx-media = "androidx.media:media:1.7.0"
161-
androidx-constraintlayout = "androidx.constraintlayout:constraintlayout:2.1.4"
161+
androidx-constraintlayout = "androidx.constraintlayout:constraintlayout:2.2.1"
162162
androidx-datastore-preferences = { module = "androidx.datastore:datastore-preferences", version.ref = "androidx-datastore" }
163163
androidx-draganddrop = "androidx.draganddrop:draganddrop:1.0.0"
164-
androidx-dynamicanimation = "androidx.dynamicanimation:dynamicanimation-ktx:1.0.0-alpha03"
164+
androidx-dynamicanimation = "androidx.dynamicanimation:dynamicanimation-ktx:1.1.0"
165165
androidx-media3-common = { module = "androidx.media3:media3-common", version.ref = "media3" }
166166
androidx-media3-effect = { module = "androidx.media3:media3-effect", version.ref = "media3" }
167167
androidx-media3-exoplayer = { module = "androidx.media3:media3-exoplayer", version.ref = "media3" }
168168
androidx-media3-transformer = { module = "androidx.media3:media3-transformer", version.ref = "media3" }
169169
androidx-media3-ui = { module = "androidx.media3:media3-ui", version.ref = "media3" }
170170

171-
fresco = "com.facebook.fresco:fresco:3.0.0"
171+
fresco = "com.facebook.fresco:fresco:3.6.0"
172172
fresco-nativeimagetranscoder = "com.facebook.fresco:nativeimagetranscoder:2.6.0!!"
173-
glide = "com.github.bumptech.glide:glide:4.15.1"
173+
glide = "com.github.bumptech.glide:glide:4.16.0"
174174
glide-compose = { group = "com.github.bumptech.glide", name = "compose", version.ref = "glide-compose" }
175175
appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
176176
constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
@@ -186,9 +186,9 @@ kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
186186
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
187187
android-library = { id = "com.android.library", version.ref = "agp" }
188188

189-
affectedmoduledetector = { id = "com.dropbox.affectedmoduledetector", version = "0.2.0" }
190-
versionCatalogUpdate = { id = "nl.littlerobots.version-catalog-update", version = "0.7.0" }
191-
benManesVersions = { id = "com.github.ben-manes.versions", version = "0.44.0" }
189+
affectedmoduledetector = { id = "com.dropbox.affectedmoduledetector", version = "0.5.0" }
190+
versionCatalogUpdate = { id = "nl.littlerobots.version-catalog-update", version = "1.0.0" }
191+
benManesVersions = { id = "com.github.ben-manes.versions", version = "0.52.0" }
192192
android-test = { id = "com.android.test", version.ref = "agp" }
193193
hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
194194
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }

Diff for: gradle/spotless-init.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
val ktlintVersion = "0.48.1"
1818

1919
initscript {
20-
val spotlessVersion = "6.13.0"
20+
val spotlessVersion = "7.0.3"
2121

2222
repositories {
2323
mavenCentral()

Diff for: gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Fri Feb 14 20:10:12 KST 2025
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

Diff for: samples/connectivity/telecom/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ android {
3939
}
4040

4141
dependencies {
42-
implementation("androidx.core:core-telecom:1.0.0-alpha02")
42+
implementation("androidx.core:core-telecom:1.0.0-rc01")
4343
implementation(project(mapOf("path" to ":samples:connectivity:audio")))
4444

4545
implementation(libs.androidx.activity.compose)

0 commit comments

Comments
 (0)