Skip to content

Commit

Permalink
Test on 3.6.0 rc01
Browse files Browse the repository at this point in the history
  • Loading branch information
jmatsu committed Dec 23, 2019
1 parent ac28547 commit 07cbd61
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ class AndroidGradlePlugin {
return getVersion().major >= 4 || getVersion().major == 3 && getVersion().minor >= 3
}

static boolean isAppBundleArchiveNameChanged() {
return getVersion().major >= 4 || getVersion().major == 3 && getVersion().minor >= 5
}

static boolean isSigningConfigProviderSupported() {
return getVersion().major >= 4 || getVersion().major == 3 && getVersion().minor >= 6
}
Expand All @@ -65,10 +69,6 @@ class AndroidGradlePlugin {
return getVersion().major >= 4 || getVersion().major == 3 && getVersion().minor >= 6
}

static boolean isAppBundleArchiveNameChanged() {
return getVersion().major >= 4 || getVersion().major == 3 && getVersion().minor >= 5
}

@Nonnull
static String androidAssembleTaskName(@Nonnull String variantName) {
return "assemble${variantName.capitalize()}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class AcceptanceKtsTestSpec extends AcceptanceTestBaseSpec {
new AGPEnv("3.3.2", "4.10.1"),
new AGPEnv("3.4.0", "5.1.1"),
new AGPEnv("3.5.1", "5.4.1"),
new AGPEnv("3.6.0-beta01", "5.6.1"),
new AGPEnv("3.6.0-rc01", "5.6.4"),
]
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class AcceptanceTestSpec extends AcceptanceTestBaseSpec {
new AGPEnv("3.3.2", "4.10.1"),
new AGPEnv("3.4.1", "5.1.1"),
new AGPEnv("3.5.1", "5.4.1"),
new AGPEnv("3.6.0-beta01", "5.6.1"),
new AGPEnv("3.6.0-rc01", "5.6.4"),
]
}
}

0 comments on commit 07cbd61

Please sign in to comment.