Skip to content

Commit 6cdbbfd

Browse files
committed
Include AGP 9.0 alpha to the test matrix
1 parent 22a08bf commit 6cdbbfd

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,23 @@ abstract class AbstractAndroidSpec extends AbstractFunctionalSpec {
2525
protected static final AGP_8_11 = AgpVersion.version('8.11.1')
2626
protected static final AGP_8_12 = AgpVersion.version('8.12.2')
2727
protected static final AGP_8_13 = AgpVersion.version('8.13.0')
28+
protected static final AGP_9_0 = AgpVersion.version('9.0.0-alpha04')
2829

29-
protected static final AGP_LATEST = AGP_8_13
30+
protected static final AGP_LATEST = AGP_9_0
3031

3132
/**
3233
* TODO(tsr): this doc is perpetually out of date.
3334
*
3435
* {@code AGP_8_4} represents the minimum stable _tested_ version. {@code AGP_8_13} represents the maximum stable
35-
* _tested_ version. DAGP may work with other versions of AGP, but they aren't tested, primarily for CI performance
36-
* reasons.
36+
* _tested_ version. We also test against the latest alpha, {@code AGP_9_0} at time of writing. DAGP may work with
37+
* other versions of AGP, but they aren't tested, primarily for CI performance reasons.
3738
*
3839
* @see <a href="https://maven.google.com/web/index.html?#com.android.tools.build:gradle">AGP releases</a>
3940
*/
4041
protected static final SUPPORTED_AGP_VERSIONS = [
4142
AGP_8_4,
4243
AGP_8_13,
44+
AGP_9_0,
4345
]
4446

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

0 commit comments

Comments
 (0)