Skip to content

Commit 9372ca5

Browse files
Upgrade compile SDK to 35
1 parent 0480a68 commit 9372ca5

File tree

14 files changed

+296
-224
lines changed

14 files changed

+296
-224
lines changed

JankStatsSample/app/build.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@
1616

1717
plugins {
1818
id("com.android.application")
19-
id("kotlin-android")
19+
alias(libs.plugins.kotlin)
20+
alias(libs.plugins.compose.compiler)
2021
}
2122

2223
android {
23-
compileSdk = 33
24+
compileSdk = 35
2425

2526
buildFeatures {
2627
viewBinding = true
@@ -30,7 +31,7 @@ android {
3031
defaultConfig {
3132
applicationId = "com.example.jankstats"
3233
minSdk = 21
33-
targetSdk = 33
34+
targetSdk = 35
3435
versionCode = 1
3536
versionName = "1.0"
3637

JankStatsSample/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,6 @@
1717
plugins {
1818
alias(libs.plugins.application) apply false
1919
alias(libs.plugins.kotlin) apply false
20+
alias(libs.plugins.compose.compiler) apply false
21+
2022
}

JankStatsSample/gradle/libs.versions.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,14 @@
1414

1515
[versions]
1616

17-
agp = "7.3.1"
18-
appcompat = "1.7.0-alpha01"
19-
compose = "1.2.1"
20-
composeBom = "2022.11.00"
17+
agp = "8.6.1"
18+
appcompat = "1.7.0"
19+
composeBom = "2025.01.00"
2120
coroutines = "1.6.4"
2221
constraint_layout = "2.1.4"
2322
core = "1.9.0"
24-
jankstats = "1.0.0-alpha03"
25-
kotlin = "1.7.10"
23+
jankstats = "1.0.0-beta01"
24+
kotlin = "2.1.0"
2625
material = "1.7.0"
2726
navigation = "2.5.3"
2827
tracing = "1.1.0"
@@ -48,5 +47,6 @@ tracing = { group = "androidx.tracing", name = "tracing-ktx", version.ref = "tra
4847
[plugins]
4948

5049
application = { id = "com.android.application", version.ref = "agp" }
51-
test = { id = "com.android.test", version.ref = "agp" }
50+
compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
5251
kotlin = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
52+
test = { id = "com.android.test", version.ref = "agp" }
-15.4 KB
Binary file not shown.
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
#Tue Jan 11 09:20:06 PST 2022
1+
#Mon Jan 27 17:38:23 CET 2025
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
43
distributionPath=wrapper/dists
5-
zipStorePath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
5+
networkTimeout=10000
6+
validateDistributionUrl=true
67
zipStoreBase=GRADLE_USER_HOME
8+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)