Skip to content

Commit

Permalink
Update Android Gradle Plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 21, 2024
1 parent 30bf356 commit 1a48eab
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ For details on what was changed in different versions, see [CHANGELOG](CHANGELOG

## Compatibility

Android Gradle Plugin 3.1.4 — 8.6.1 on Gradle 4.9 — 8.8 as listed in
Android Gradle Plugin 3.1.4 — 8.7.1 on Gradle 4.9 — 8.8 as listed in
[AGP's compatibility guide](https://developer.android.com/studio/releases/gradle-plugin#updating-gradle)
are covered by different plugin versions.

Currently supported version are Android Gradle Plugin 7.0.2 — 8.6.1 on Gradle 7.0 — 8.7 where compatible.
Currently supported version are Android Gradle Plugin 7.0.2 — 8.7.1 on Gradle 7.0 — 8.7 where compatible.

| AGP →<br/>Gradle ↓ | 3.1.x | 3.2.x | 3.3.x | 3.4.x | 3.5.x | 3.6.x | 4.0.x | 4.1.x | 4.2.x ^3 | 7.0.x | 7.1.x | 7.2.x | 7.3.x | 7.4.x | 8.0.x | 8.1.x | 8.2.x | 8.3.x | 8.4.x |
|:-------------------|:----------:|:----------:|:------------:|:------------:|:-------------:|:-------------:|:-------------:|:-------------:|:-------------:|:--------:|:--------:|:--------:|:--------:|:--------:|:--------:|:--------:|:--------:|:--------:|:--------:|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class AGPVersionsTest {

@Test fun `CLASSPATH version is what the project is compiled with`() {
// This is not using AGPVersion() because Renovate needs to update this one. See "Update AGP version test.".
val expected = AGPVersion.parse("8.6.1")
val expected = AGPVersion.parse("8.7.1")

val actual = AGPVersions.CLASSPATH

Expand Down
2 changes: 1 addition & 1 deletion docs/examples/local/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("com.android.application") version "8.6.1"
id("com.android.application") version "8.7.1"
id("net.twisterrob.gradle.plugin.quality") version "0.18-SNAPSHOT"
}

Expand Down
2 changes: 1 addition & 1 deletion docs/examples/release/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("com.android.application") version "8.6.1"
id("com.android.application") version "8.7.1"
id("net.twisterrob.gradle.plugin.quality") version "0.17"
}

Expand Down
2 changes: 1 addition & 1 deletion docs/examples/snapshot/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("com.android.application") version "8.6.1"
id("com.android.application") version "8.7.1"
id("net.twisterrob.gradle.plugin.quality") version "0.18-SNAPSHOT"
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ net.twisterrob.test.java.io.tmpdir=

# Default test substitutions (overridden by .github/workflows/ci.yml with -P)
# AGP: 7.0.4, 7.1.3, 7.2.2, 7.3.1, 7.4.2, 8.0.2, 8.1.4, 8.2.2, 8.3.2
net.twisterrob.test.android.pluginVersion=8.6.1
net.twisterrob.test.android.pluginVersion=8.7.1
# Kotlin: AGP 7.0.4-7.2.2 -> Kotlin 1.4.32; AGP 7.3.0- -> Kotlin 1.6.21
net.twisterrob.test.kotlin.pluginVersion=1.6.21
# Gradle: 7.0.2, 7.2, 7.3.3, 7.4.2, 7.5.1, 7.6.1, 8.0.2, 8.1, 8.2.1, 8.4
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ gradle-publish = "1.3.0"

# See [lint] which is affected by this.
# Versions: https://maven.google.com/web/index.html#com.android.tools.build:gradle
agp = "8.6.1"
agp = "8.7.1"

# = 23.0.0 + [agp].
# @see com.android.build.gradle.internal.plugins.BasePlugin.createLintClasspathConfiguration
# @see builder-model//version.properties
# Versions: https://maven.google.com/web/index.html#com.android.tools.lint:lint
agp-tools = "31.6.1"
agp-tools = "31.7.1"

# Changelog: https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md
# Actual Kotlin version for dependencies. It has to be older to make sure a Gradle-compatible version is used.
Expand Down
4 changes: 2 additions & 2 deletions graph/sample/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ pluginManagement {
mavenCentral()
}
plugins {
id("com.android.application") version "8.6.1"
id("com.android.library") version "8.6.1"
id("com.android.application") version "8.7.1"
id("com.android.library") version "8.7.1"
}
}

Expand Down

0 comments on commit 1a48eab

Please sign in to comment.