Skip to content

Commit 8a30709

Browse files
authored
Merge pull request #31 from gradle/lptr/support-gradle-4.5-rc-1
Support Gradle 4.5-rc-1
2 parents 30390df + ef4e4f0 commit 8a30709

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Some Android plugin versions have issues with Gradle's build cache feature. When applied to an Android project this plugin applies workarounds for these issues based on the Android plugin and Gradle versions.
66

7-
* Supported Gradle versions: 4.1 to 4.4.1
7+
* Supported Gradle versions: 4.1 to 4.4.1, 4.5-rc-1
88
* Supported Android versions: 3.0.0, 3.1.0-alpha07
99

1010
## List of issues

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ version = ["git", "describe", "--match", "[0-9]*", "--dirty"].execute().text.tri
2222

2323
// Maps supported Android plugin versions to the versions of Gradle that support it
2424
def supportedVersions = [
25-
"3.1.0-alpha07": ["4.4", "4.4.1"],
26-
"3.0.0": ["4.1", "4.2", "4.2.1", "4.3", "4.3.1", "4.4", "4.4.1"],
27-
"3.0.1": ["4.1", "4.2", "4.2.1", "4.3", "4.3.1", "4.4", "4.4.1"],
25+
"3.1.0-alpha07": ["4.4", "4.4.1", "4.5-rc-1"],
26+
"3.0.0": ["4.1", "4.2", "4.2.1", "4.3", "4.3.1", "4.4", "4.4.1", "4.5-rc-1"],
27+
"3.0.1": ["4.1", "4.2", "4.2.1", "4.3", "4.3.1", "4.4", "4.4.1", "4.5-rc-1"],
2828
]
2929

3030
repositories {

src/test/groovy/org/gradle/android/PluginApplicationTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class PluginApplicationTest extends AbstractTest {
1818
result.output =~ /Gradle ${quote(gradleVersion)} is not supported by Android cache fix plugin. Supported Gradle versions: .*. Override with -Dorg.gradle.android.cache-fix.ignoreVersionCheck=true./
1919

2020
where:
21-
gradleVersion << ["4.5-20171119235929+0000"]
21+
gradleVersion << ["4.6-20180111235836+0000"]
2222
}
2323

2424
@Unroll

src/test/groovy/org/gradle/android/RelocationTest.groovy

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ class RelocationTest extends AbstractTest {
5656
relocatedDir.deleteDir()
5757

5858
where:
59-
//[androidVersion, gradleVersion] << Versions.SUPPORTED_VERSIONS_MATRIX.entries().collect { [it.key, it.value] }
60-
[androidVersion, gradleVersion] << [[android("3.1.0-alpha07"), gradle("4.4.1")]]
59+
[androidVersion, gradleVersion] << Versions.SUPPORTED_VERSIONS_MATRIX.entries().collect { [it.key, it.value] }
6160
}
6261

6362
static class ExpectedResults {

0 commit comments

Comments
 (0)