Skip to content

Commit 8a3cacf

Browse files
committed
Fix version variables (appcompat and activity were using the same variable) and update compileSdk/targetSdk
1 parent 733c7ce commit 8a3cacf

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

JankStatsSample/gradle/libs.versions.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
[versions]
1616

1717
agp = "8.8.1"
18-
appcompat = "1.10.0"
18+
appcompat = "1.7.0"
19+
activity = "1.10.0"
1920
composeBom = "2025.02.00"
2021
coroutines = "1.10.1"
2122
constraint_layout = "2.2.0"
@@ -29,7 +30,7 @@ tracing = "1.2.0"
2930
[libraries]
3031

3132
compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
32-
activity = { group = "androidx.activity", name = "activity-ktx", version.ref = "appcompat" }
33+
activity = { group = "androidx.activity", name = "activity-ktx", version.ref = "activity" }
3334
appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
3435
compose-activity = { group = "androidx.activity", name = "activity-compose" }
3536
compose-material = { group = "androidx.compose.material", name = "material" }

MacrobenchmarkSample/app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ plugins {
2222
}
2323

2424
android {
25-
compileSdk = 34
25+
compileSdk = 35
2626
namespace = "com.example.macrobenchmark.target"
2727

2828
defaultConfig {
2929
applicationId = "com.example.macrobenchmark.target"
3030
versionCode = 1
3131
versionName = "1.0"
3232
minSdk = 24
33-
targetSdk = 34
33+
targetSdk = 35
3434
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
3535
}
3636

0 commit comments

Comments
 (0)