Skip to content

Commit

Permalink
Add support for 4.2.0-beta04
Browse files Browse the repository at this point in the history
  • Loading branch information
ghale committed Feb 1, 2021
1 parent 9f50e32 commit 8df6669
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ version = ["git", "describe", "--match", "[0-9]*", "--dirty"].execute().text.tri

// Maps supported Android plugin versions to the versions of Gradle that support it
def supportedVersions = [
"4.2.0-beta03": ["6.8.1", "7.0-20210119173355+0000"],
"4.2.0-beta04": ["6.8.1", "7.0-20210119173355+0000"],
"4.1.1": ["6.5.1", "6.8.1"],
"4.0.2": ["6.1.1", "6.8.1"],
"3.6.4": ["5.6.4", "6.8.1"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ class CrossVersionOutcomeAndRelocationTest extends AbstractTest {
builder.expect(':library:bundleLibRuntimeToDirDebug', FROM_CACHE)
builder.expect(':library:bundleLibRuntimeToDirRelease', FROM_CACHE)
builder.expect(':app:optimizeReleaseResources', FROM_CACHE)
builder.expect(':app:mergeReleaseNativeDebugMetadata', FROM_CACHE)
builder.expect(':app:mergeReleaseNativeDebugMetadata', NO_SOURCE)
builder.expect(':app:writeDebugAppMetadata', FROM_CACHE)
builder.expect(':app:extractReleaseNativeSymbolTables', FROM_CACHE)
builder.expect(':app:writeReleaseAppMetadata', FROM_CACHE)
Expand Down
2 changes: 1 addition & 1 deletion src/test/groovy/org/gradle/android/WorkaroundTest.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class WorkaroundTest extends Specification {
workarounds.collect { it.class.simpleName.replaceAll(/Workaround/, "") }.sort() == expectedWorkarounds.sort()
where:
androidVersion | expectedWorkarounds
"4.2.0-beta03" | ['RoomSchemaLocation', 'CompileLibraryResources_4_2', 'MergeResources', 'DexFileDependencies']
"4.2.0-beta04" | ['RoomSchemaLocation', 'CompileLibraryResources_4_2', 'MergeResources', 'DexFileDependencies']
"4.1.2" | ['RoomSchemaLocation', 'CompileLibraryResources_4_0', 'MergeResources', 'DexFileDependencies']
"4.0.2" | ['MergeJavaResources', 'MergeNativeLibs', 'RoomSchemaLocation', 'CompileLibraryResources_4_0', 'MergeResources', 'DexFileDependencies']
"3.6.4" | ['MergeJavaResources', 'MergeNativeLibs', 'RoomSchemaLocation', 'DexFileDependencies']
Expand Down

0 comments on commit 8df6669

Please sign in to comment.