Skip to content

Commit 6df0bfa

Browse files
authored
chore: update to AGP 8.8.0 (#1350)
This updates the project to: - AGP 8.8.0 (latest feature release). - AGP 8.7.3 (latest bugfix release).
1 parent 7b2449b commit 6df0bfa

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

gradle/libs.versions.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ kotlinMetadata = "2.0.21"
1919
kotlineditor-core = "0.18"
2020
kotlineditor-relocated = "0.18.0"
2121

22-
kotlinx-metadata = "0.9.0"
2322
moshi = "1.15.1"
2423
moshix = "0.25.1"
2524
okhttp = "4.12.0"
@@ -43,7 +42,7 @@ commons-io = { module = "commons-io:commons-io", version.ref = "commons-io" }
4342
errorProne = { module = "com.google.errorprone:error_prone_annotations", version.ref = "error-prone" }
4443
gradle-publish-plugin = { module = "com.gradle.plugin-publish:com.gradle.plugin-publish.gradle.plugin", version.ref = "gradle-publish-plugin" }
4544
grammar = { module = "com.autonomousapps:gradle-script-grammar", version.ref = "grammar" }
46-
guava = { module ="com.google.guava:guava", version.ref = "guava" }
45+
guava = { module = "com.google.guava:guava", version.ref = "guava" }
4746

4847
javax-inject = "javax.inject:javax.inject:1"
4948

src/functionalTest/groovy/com/autonomousapps/android/AbstractAndroidSpec.groovy

+4-5
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,22 @@ abstract class AbstractAndroidSpec extends AbstractFunctionalSpec {
2121
protected static final AGP_8_4 = AgpVersion.version('8.4.2')
2222
protected static final AGP_8_5 = AgpVersion.version('8.5.2')
2323
protected static final AGP_8_6 = AgpVersion.version('8.6.1')
24-
protected static final AGP_8_7 = AgpVersion.version('8.7.0')
25-
protected static final AGP_8_8 = AgpVersion.version('8.8.0-alpha04')
24+
protected static final AGP_8_7 = AgpVersion.version('8.7.3')
25+
protected static final AGP_8_8 = AgpVersion.version('8.8.0')
2626

2727
protected static final AGP_LATEST = AGP_8_8
2828

2929
/**
3030
* TODO(tsr): this doc is perpetually out of date.
3131
*
32-
* {@code AGP_8_0} represents the minimum stable _tested_ version. {@code AGP_8_7} represents the maximum stable
33-
* _tested_ version. We also test against the latest alpha, {@code AGP_8_8} at time of writing. DAGP may work with
32+
* {@code AGP_8_0} represents the minimum stable _tested_ version. {@code AGP_8_8} represents the maximum stable
33+
* _tested_ version. DAGP may work with
3434
* other versions of AGP, but they aren't tested, primarily for CI performance reasons.
3535
*
3636
* @see <a href="https://maven.google.com/web/index.html?#com.android.tools.build:gradle">AGP releases</a>
3737
*/
3838
protected static final SUPPORTED_AGP_VERSIONS = [
3939
AGP_8_0,
40-
AGP_8_7,
4140
AGP_8_8,
4241
]
4342

src/main/kotlin/com/autonomousapps/internal/android/AgpVersion.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ internal class AgpVersion private constructor(val version: String) : Comparable<
1515
companion object {
1616

1717
@JvmStatic val AGP_MIN = version("8.0.0")
18-
@JvmStatic val AGP_MAX = version("8.7.0")
18+
@JvmStatic val AGP_MAX = version("8.8.0")
1919

2020
@JvmStatic fun current(): AgpVersion = AgpVersion(agpVersion())
2121
@JvmStatic fun version(version: String): AgpVersion = AgpVersion(version)

0 commit comments

Comments
 (0)