Skip to content

Commit 6fcd743

Browse files
ersion upgrades
1 parent c587f45 commit 6fcd743

File tree

3 files changed

+30
-28
lines changed

3 files changed

+30
-28
lines changed

baseline-profiles/app/src/main/java/com/example/baselineprofiles_codelab/ui/JetsnackAppState.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ class JetsnackAppState(
143143
* This is used to de-duplicate navigation events.
144144
*/
145145
private fun NavBackStackEntry.lifecycleIsResumed() =
146-
this.getLifecycle().currentState == Lifecycle.State.RESUMED
146+
this.lifecycle.currentState == Lifecycle.State.RESUMED
147147

148148
private val NavGraph.startDestination: NavDestination?
149149
get() = findNode(startDestinationId)

baseline-profiles/gradle/libs.versions.toml

+28-26
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,46 @@
11
[versions]
2-
accompanist = "0.30.1"
3-
androidGradlePlugin = "8.2.1"
4-
androidx-activity-compose = "1.7.1"
5-
androidx-appcompat = "1.6.1"
6-
androidx-benchmark-junit4 = "1.2.0"
7-
androidx-compose-bom = "2023.04.01"
2+
accompanist = "0.34.0"
3+
androidGradlePlugin = "8.2.2"
4+
androidx-activity-compose = "1.9.0"
5+
androidx-appcompat = "1.7.0"
6+
androidx-benchmark = "1.2.4"
7+
androidx-benchmark-junit4 = "1.2.4"
8+
androidx-compose-bom = "2024.06.00"
89
androidx-constraintlayout = "1.0.1"
9-
androidx-corektx = "1.10.0"
10-
androidx-lifecycle-runtime = "2.6.1"
11-
androidx-lifecycle-compose = "2.6.1"
12-
androidx-lifecycle-runtime-compose = "2.6.1"
13-
androidx-navigation = "2.5.3"
10+
androidx-corektx = "1.13.1"
11+
androidx-lifecycle-runtime = "2.8.2"
12+
androidx-lifecycle-compose = "2.8.2"
13+
androidx-lifecycle-runtime-compose = "2.8.2"
14+
androidx-navigation = "2.7.7"
1415
androidx-palette = "1.0.0"
15-
androidx-test = "1.5.0"
16-
androidx-test-espresso = "3.5.1"
17-
androidx-test-ext-junit = "1.1.5"
18-
androidx-test-ext-truth = "1.5.0"
19-
androidx-window = "1.2.0"
20-
androidxHiltNavigationCompose = "1.1.0"
21-
androix-test-uiautomator = "2.2.0"
22-
coil = "2.4.0"
16+
androidx-test = "1.6.0"
17+
androidx-test-espresso = "3.6.0"
18+
androidx-test-ext-junit = "1.2.0"
19+
androidx-test-ext-truth = "1.6.0"
20+
androidx-window = "1.3.0"
21+
androidxHiltNavigationCompose = "1.2.0"
22+
androix-test-uiautomator = "2.3.0"
23+
coil = "2.6.0"
2324
# @keep
2425
compileSdk = "33"
2526
compose-compiler = "1.4.5"
26-
coroutines = "1.7.1"
27-
google-maps = "18.2.0"
27+
coroutines = "1.8.0"
28+
google-maps = "19.0.0"
2829
gradle-versions = "0.46.0"
29-
hilt = "2.44.2"
30-
hiltExt = "1.1.0"
30+
hilt = "2.51"
31+
hiltExt = "1.2.0"
32+
# @pin When updating to AGP 7.4.0-alpha10 and up we can update this https://developer.android.com/studio/write/java8-support#library-desugaring-versions
3133
jdkDesugar = "2.0.4"
3234
junit = "4.13.2"
3335
# @pin Update in conjuction with Compose Compiler
3436
kotlin = "1.8.20"
3537
ksp = "1.8.0-1.0.9"
3638
maps-compose = "2.5.3"
37-
material = "1.11.0"
39+
material = "1.12.0"
3840
# @keep
3941
minSdk = "21"
40-
okhttp = "4.11.0"
41-
robolectric = "4.9.2"
42+
okhttp = "4.12.0"
43+
robolectric = "4.11.1"
4244
rome = "1.18.0"
4345
room = "2.6.1"
4446
runtimeTracing = "1.0.0-beta01"
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)