Skip to content

Commit 4cc064c

Browse files
committed
Add support for AGP 7.0.0-alpha08
1 parent d50291b commit 4cc064c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def isCI = (System.getenv('CI') ?: 'false').toBoolean()
1818
// Maps supported Android plugin versions to the versions of Gradle that support it
1919
def sevenDotZeroNightly = "7.0-20210222153642+0000"
2020
def supportedVersions = [
21-
"7.0.0-alpha06": ["6.8.3", sevenDotZeroNightly],
21+
"7.0.0-alpha08": ["6.8.3", sevenDotZeroNightly],
2222
"4.2.0-beta05": ["6.8.3", sevenDotZeroNightly],
2323
"4.1.2": ["6.5.1", "6.8.3"],
2424
"4.0.2": ["6.1.1", "6.8.3"],
@@ -142,7 +142,7 @@ supportedVersions.keySet().each { androidVersion ->
142142
def versionSpecificTest = tasks.register(androidTestTaskName(androidVersion), Test) {
143143
description = "Runs the multi-version tests for AGP ${androidVersion}"
144144
group = "verification"
145-
145+
146146
javaLauncher = javaToolchains.launcherFor {
147147
languageVersion = jdkVersionFor(androidVersion)
148148
}
@@ -176,4 +176,4 @@ tasks.register("sanityCheck") {
176176
tasks.withType(ValidatePlugins).configureEach {
177177
failOnWarning = true
178178
enableStricterValidation = true
179-
}
179+
}

0 commit comments

Comments
 (0)