Skip to content

Commit 757a689

Browse files
authored
Merge pull request #125 from gradle/no/4.1
Add support for AGP 4.1
2 parents 04b65df + 92eed4c commit 757a689

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

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

1313
// Maps supported Android plugin versions to the versions of Gradle that support it
1414
def supportedVersions = [
15-
"4.2.0-alpha13": ["6.6.1"],
16-
"4.1.0-rc03": ["6.5.1"],
15+
"4.2.0-alpha13": ["6.7"],
16+
"4.1.0": ["6.5.1"],
1717
"4.0.2": ["6.1.1", "6.3", "6.4.1"],
1818
"3.6.4": ["5.6.4", "6.3", "6.4.1"],
1919
"3.5.4": ["5.4.1", "5.6.4", "6.3", "6.4.1"]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class WorkaroundTest extends Specification {
1313
where:
1414
androidVersion | expectedWorkarounds
1515
"4.2.0-alpha13" | ['RoomSchemaLocation', 'CompileLibraryResources_4_2', 'MergeResources', 'DexFileDependencies']
16-
"4.1.0-rc03" | ['RoomSchemaLocation', 'CompileLibraryResources_4_0', 'MergeResources', 'DexFileDependencies']
16+
"4.1.0" | ['RoomSchemaLocation', 'CompileLibraryResources_4_0', 'MergeResources', 'DexFileDependencies']
1717
"4.0.2" | ['MergeJavaResources', 'MergeNativeLibs', 'RoomSchemaLocation', 'CompileLibraryResources_4_0', 'MergeResources', 'DexFileDependencies']
1818
"3.6.4" | ['MergeJavaResources', 'MergeNativeLibs', 'RoomSchemaLocation', 'DexFileDependencies']
1919
"3.5.4" | ['MergeJavaResources', 'RoomSchemaLocation', 'DexFileDependencies']

0 commit comments

Comments
 (0)