Skip to content

Commit aafb192

Browse files
author
Abduqodiri Qurbonzoda
committed
Bump Android Gradle Plugin version to 8.5.1 in all subprojects
1 parent 1ac13a6 commit aafb192

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ buildscript {
2424
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
2525
}
2626
}
27-
classpath("com.android.tools.build:gradle:8.2.2")
27+
classpath("com.android.tools.build:gradle:8.5.1")
2828
}
2929
}
3030

integration/src/main/kotlin/kotlinx/benchmark/integration/GradleTestVersion.kt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
package kotlinx.benchmark.integration
22

33
enum class GradleTestVersion(val versionString: String) {
4+
v8_7("8.7"),
45
v8_0("8.0.2"),
5-
MinSupportedGradleVersion("7.5"),
6+
MinSupportedGradleVersion("7.4"),
67
UnsupportedGradleVersion("7.3"),
78
MinSupportedKotlinVersion("2.0.0"),
89
UnsupportedKotlinVersion("1.9.20"),

integration/src/main/kotlin/kotlinx/benchmark/integration/ProjectBuilder.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ private fun generateBuildScript(kotlinVersion: String) =
4747
dependencies {
4848
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion'
4949
classpath 'org.jetbrains.kotlinx:kotlinx-benchmark-plugin:0.5.0-SNAPSHOT'
50-
classpath 'com.android.tools.build:gradle:7.3.1'
50+
classpath 'com.android.tools.build:gradle:8.5.1'
5151
}
5252
}
5353

integration/src/test/kotlin/kotlinx/benchmark/integration/AndroidProjectGeneratorTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import kotlin.test.assertTrue
55

66
class AndroidProjectGeneratorTest: GradleTest() {
77
private fun testAndroidProjectGeneration(setupBlock: Runner.() -> Unit, checkBlock: Runner.() -> Unit) {
8-
project("source-generation").apply {
8+
project("source-generation", print = true, gradleVersion = GradleTestVersion.v8_7).apply {
99
setupBlock()
1010
runAndSucceed("androidReleaseBenchmarkGenerate")
1111
checkBlock()

0 commit comments

Comments
 (0)