Skip to content

Commit 484c24d

Browse files
authored
Merge pull request #47 from gradle/lptr/support-android-3.1.0-rc01
Support Android 3.1.0-rc01
2 parents e53a294 + 0e736e9 commit 484c24d

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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

77
* Supported Gradle versions: 4.1+
8-
* Supported Android versions: 3.0.0, 3.0.1, 3.1.0-beta4, 3.2.0-alpha01
8+
* Supported Android versions: 3.0.0, 3.0.1, 3.1.0-rc01, 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.
1111

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.1"],
26-
"3.1.0-beta4": ["4.4.1", "4.5.1"],
27-
"3.0.0": ["4.1", "4.2.1", "4.3.1", "4.4.1", "4.5.1"],
28-
"3.0.1": ["4.1", "4.2.1", "4.3.1", "4.4.1", "4.5.1"],
25+
"3.2.0-alpha01": ["4.5.1", "4.6"],
26+
"3.1.0-rc01": ["4.4.1", "4.5.1", "4.6"],
27+
"3.0.0": ["4.1", "4.2.1", "4.3.1", "4.4.1", "4.5.1", "4.6"],
28+
"3.0.1": ["4.1", "4.2.1", "4.3.1", "4.4.1", "4.5.1", "4.6"],
2929
]
3030

3131
repositories {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ class PluginApplicationTest extends AbstractTest {
4646
false | false | "3.0.0"
4747
false | true | "3.0.1"
4848
false | false | "3.0.1"
49-
false | true | "3.1.0-beta4"
50-
true | false | "3.1.0-beta4"
49+
false | true | "3.1.0-rc01"
50+
true | false | "3.1.0-rc01"
5151
false | true | "3.2.0-alpha01"
5252
true | false | "3.2.0-alpha01"
5353
description = warns ? "warn" : "not warn"

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class WorkaroundTest extends Specification {
2727
"3.1.0-beta2" | ["DataBindingDependencyArtifacts"]
2828
"3.1.0-beta3" | ["DataBindingDependencyArtifacts"]
2929
"3.1.0-beta4" | ["DataBindingDependencyArtifacts"]
30+
"3.1.0-rc01" | ["DataBindingDependencyArtifacts"]
3031
"3.2.0-alpha01" | ["DataBindingDependencyArtifacts"]
3132
}
3233
}

0 commit comments

Comments
 (0)