Skip to content

Commit 382fb09

Browse files
authored
Merge pull request #39 from gradle/lptr/support-gradle-4.5.1
Support Gradle 4.5.1
2 parents fe09944 + cbb4f29 commit 382fb09

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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: all versions between 4.1 and 4.5
7+
* Supported Gradle versions: all versions between 4.1 and 4.5.1
88
* Supported Android versions: 3.0.0, 3.0.1, 3.1.0-beta1, 3.2.0-alpha01
99

1010
**Note:** With Android 3.1.x and 3.2.x the cache-fix plugin is only required if you are using Android's data binding feature.

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ 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.2.0-alpha01": ["4.5"],
26-
"3.1.0-beta1": ["4.4", "4.4.1", "4.5"],
27-
"3.0.0": ["4.1", "4.2", "4.2.1", "4.3", "4.3.1", "4.4", "4.4.1", "4.5"],
28-
"3.0.1": ["4.1", "4.2", "4.2.1", "4.3", "4.3.1", "4.4", "4.4.1", "4.5"],
25+
"3.2.0-alpha01": ["4.5", "4.5.1"],
26+
"3.1.0-beta1": ["4.4", "4.4.1", "4.5", "4.5.1"],
27+
"3.0.0": ["4.1", "4.2", "4.2.1", "4.3", "4.3.1", "4.4", "4.4.1", "4.5", "4.5.1"],
28+
"3.0.1": ["4.1", "4.2", "4.2.1", "4.3", "4.3.1", "4.4", "4.4.1", "4.5", "4.5.1"],
2929
]
3030

3131
repositories {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class PluginApplicationTest extends AbstractTest {
4343
def message = "WARNING: Android cache-fix plugin is not required when using Android plugin $androidVersion or later, unless Android data binding is used."
4444

4545
expect:
46-
def result = withGradleVersion("4.5")
46+
def result = withGradleVersion("4.5.1")
4747
.withProjectDir(projectDir)
4848
.withArguments("tasks")
4949
.withDebug(true)

0 commit comments

Comments
 (0)