Skip to content

Commit b72e81f

Browse files
runningcodeclaude
andcommitted
build: Bump AGP to 9.4.0
Raise the default Android Gradle Plugin from 9.2.1 to 9.4.0, the latest stable release, and move the pinned lint version with it so lint keeps matching the plugin it ships alongside. Refresh the AGP compatibility matrix to 9.0.0/9.2.1/9.4.0. The minimum supported 9.0.0 and the new default stay covered; 9.1.1 gives way to the previous default 9.2.1 to keep the matrix at three jobs. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent c597f23 commit b72e81f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/agp-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
agp: [ '9.0.0', '9.1.1', '9.2.1' ]
20+
agp: [ '9.0.0', '9.2.1', '9.4.0' ]
2121
integrations: [ true, false ]
2222

2323
name: AGP Matrix Release - AGP ${{ matrix.agp }} - Integrations ${{ matrix.integrations }}

buildSrc/src/main/java/Config.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
object Config {
3-
val AGP = System.getenv("VERSION_AGP") ?: "9.2.1"
3+
val AGP = System.getenv("VERSION_AGP") ?: "9.4.0"
44
val kotlinStdLib = "stdlib-jdk8"
55
val kotlinStdLibVersionAndroid = "1.9.24"
66
val kotlinTestJunit = "test-junit"

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ android.useAndroidX=true
1313
# AGP 9+ migration opt-outs until we remove kotlin-android plugin and adopt built-in Kotlin.
1414
android.builtInKotlin=false
1515
android.newDsl=false
16-
android.experimental.lint.version=9.2.1
16+
android.experimental.lint.version=9.4.0
1717

1818
# Release information
1919
versionName=8.55.0

0 commit comments

Comments
 (0)