From dd050054401456ff3b6a8003506dae266ba727b4 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 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/functionalTest/groovy/com/autonomousapps/android/AbstractAndroidSpec.groovy b/src/functionalTest/groovy/com/autonomousapps/android/AbstractAndroidSpec.groovy index 8ba107ea9..c0b26becf 100644 --- a/src/functionalTest/groovy/com/autonomousapps/android/AbstractAndroidSpec.groovy +++ b/src/functionalTest/groovy/com/autonomousapps/android/AbstractAndroidSpec.groovy @@ -24,14 +24,15 @@ 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 + protected static final AGP_LATEST = AGP_8_10 /** * 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) {