Skip to content

Commit 669877f

Browse files
committed
Update to AGP 8.8.0
This updates the project to: - AGP 8.8.0 (latest feature release). - AGP 8.7.3 (bugfix release). - AGP 8.9.0-alpha08 (latest canary release).
1 parent 309cd95 commit 669877f

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

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

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,24 +21,25 @@ 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')
26+
protected static final AGP_8_9 = AgpVersion.version('8.9.0-alpha08')
2627

27-
protected static final AGP_LATEST = AGP_8_8
28+
protected static final AGP_LATEST = AGP_8_9
2829

2930
/**
3031
* TODO(tsr): this doc is perpetually out of date.
3132
*
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
33+
* {@code AGP_8_0} represents the minimum stable _tested_ version. {@code AGP_8_8} represents the maximum stable
34+
* _tested_ version. We also test against the latest alpha, {@code AGP_8_9} at time of writing. DAGP may work with
3435
* other versions of AGP, but they aren't tested, primarily for CI performance reasons.
3536
*
3637
* @see <a href="https://maven.google.com/web/index.html?#com.android.tools.build:gradle">AGP releases</a>
3738
*/
3839
protected static final SUPPORTED_AGP_VERSIONS = [
3940
AGP_8_0,
40-
AGP_8_7,
4141
AGP_8_8,
42+
AGP_8_9,
4243
]
4344

4445
protected static List<AgpVersion> agpVersions(AgpVersion minAgpVersion = AgpVersion.AGP_MIN) {

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

Lines changed: 1 addition & 1 deletion
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)