fix: AGP 8.11.1 does not exist, use 8.13.2 + sync Kotlin 2.3.20#688
Merged
ThomasGorisse merged 1 commit intomainfrom Mar 21, 2026
Merged
fix: AGP 8.11.1 does not exist, use 8.13.2 + sync Kotlin 2.3.20#688ThomasGorisse merged 1 commit intomainfrom
ThomasGorisse merged 1 commit intomainfrom
Conversation
AGP version 8.11.1 was confused with Gradle wrapper 8.11.1 — the artifact does not exist on Google Maven. Revert to 8.13.2 which was the working version before the erroneous downgrade. Also sync Kotlin from 2.1.21 → 2.3.20 in root build.gradle to match the version catalog, and use canonical plugin ID in library modules. https://claude.ai/code/session_01FpJ8JiZ4KVBhkJcUtCM35P
This was referenced Mar 21, 2026
ThomasGorisse
pushed a commit
that referenced
this pull request
Mar 21, 2026
The last passing CI (82d302e) used AGP 8.11.1 and the kotlin-android shorthand plugin ID. PR #688 incorrectly changed AGP to 8.13.2 and the plugin IDs to org.jetbrains.kotlin.android. https://claude.ai/code/session_01FpJ8JiZ4KVBhkJcUtCM35P
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
8.11.1was confused with Gradle wrapper8.11.1— the artifact doesn't exist on Google Maven. Updated to8.13.2which is the real version.2.1.21→2.3.20in rootbuild.gradleto match the version catalog.'kotlin-android'plugin ID to'org.jetbrains.kotlin.android'in library modules.Root cause
Every CI run since the
v3.2.1sweep has been failing becausecom.android.tools.build:gradle:8.11.1cannot be resolved from any Maven repository — it simply does not exist. The Gradle wrapper version is8.11.1, but the Android Gradle Plugin version must be a valid AGP release.Test plan
./gradlew assembleDebugpasseshttps://claude.ai/code/session_01FpJ8JiZ4KVBhkJcUtCM35P