From 04e441864e7c953378399fbc4323488f678df84e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Muller?= Date: Wed, 22 Jan 2025 08:16:55 +0100 Subject: [PATCH] Add AGP 8.10 --- .../com/autonomousapps/android/AbstractAndroidSpec.groovy | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/functionalTest/groovy/com/autonomousapps/android/AbstractAndroidSpec.groovy b/src/functionalTest/groovy/com/autonomousapps/android/AbstractAndroidSpec.groovy index 8ba107ea9..32dde95e9 100644 --- a/src/functionalTest/groovy/com/autonomousapps/android/AbstractAndroidSpec.groovy +++ b/src/functionalTest/groovy/com/autonomousapps/android/AbstractAndroidSpec.groovy @@ -24,6 +24,7 @@ abstract class AbstractAndroidSpec extends AbstractFunctionalSpec { protected static final AGP_8_7 = AgpVersion.version('8.7.3') protected static final AGP_8_8 = AgpVersion.version('8.8.0') protected static final AGP_8_9 = AgpVersion.version('8.9.0-alpha09') + protected static final AGP_8_10 = AgpVersion.version('8.10.0-alpha01') protected static final AGP_LATEST = AGP_8_9 @@ -31,7 +32,7 @@ abstract class AbstractAndroidSpec extends AbstractFunctionalSpec { * TODO(tsr): this doc is perpetually out of date. * * {@code AGP_8_0} represents the minimum stable _tested_ version. {@code AGP_8_8} represents the maximum stable - * _tested_ version. We also test against the latest alpha, {@code AGP_8_9} at time of writing. DAGP may work with + * _tested_ version. We also test against the latest alpha, {@code AGP_8_10} at time of writing. DAGP may work with * other versions of AGP, but they aren't tested, primarily for CI performance reasons. * * @see AGP releases @@ -39,7 +40,7 @@ abstract class AbstractAndroidSpec extends AbstractFunctionalSpec { protected static final SUPPORTED_AGP_VERSIONS = [ AGP_8_0, AGP_8_8, - AGP_8_9, + AGP_8_10, ] protected static List agpVersions(AgpVersion minAgpVersion = AgpVersion.AGP_MIN) {