Skip to content

Commit

Permalink
Upgrade 7.2.0 beta versions to 7.2.0 (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
jprinet authored May 10, 2022
1 parent 4abc8f2 commit 26832e3
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
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. For other versions, please see [older versions.](#older-android-gradle-plugin-versions)

* Supported Gradle versions: 7.0+
* Supported Android Gradle Plugin versions: 7.0.4, 7.1.3, 7.2.0-rc01, 7.3.0-alpha09
* Supported Android Gradle Plugin versions: 7.0.4, 7.1.3, 7.2.0, 7.3.0-alpha09
* Supported Kotlin versions: 1.4.32+

We only test against the latest patch versions of each minor version of Android Gradle Plugin. This means that although it may work perfectly well with an older patch version (say 7.0.1), we do not test against these older patch versions, so the latest patch version is the only version from that minor release that we technically support.
Expand Down
1 change: 1 addition & 0 deletions release/changes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* [FIX] - Support latest versions of AGP
2 changes: 1 addition & 1 deletion src/main/resources/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"7.3.0-alpha09": [
"7.4.2"
],
"7.2.0-rc01": [
"7.2.0": [
"7.3.3",
"7.4.2"
],
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 {
where:
androidVersion | expectedWorkarounds
"7.3.0-alpha09" | ['MergeSourceSetFolders', 'RoomSchemaLocation', 'ZipMergingTask']
"7.2.0-rc01" | ['MergeSourceSetFolders', 'RoomSchemaLocation', 'ZipMergingTask']
"7.2.0" | ['MergeSourceSetFolders', 'RoomSchemaLocation', 'ZipMergingTask']
"7.1.3" | ['BundleLibraryClasses', 'CompileLibraryResources', 'DataBindingMergeDependencyArtifacts', 'LibraryJniLibs', 'MergeNativeLibs', 'MergeSourceSetFolders', 'RoomSchemaLocation', 'StripDebugSymbols', 'ZipMergingTask']
"7.0.4" | ['BundleLibraryClasses', 'CompileLibraryResources', 'DataBindingMergeDependencyArtifacts', 'LibraryJniLibs', 'MergeNativeLibs', 'MergeSourceSetFolders', 'RoomSchemaLocation', 'StripDebugSymbols', 'ZipMergingTask']
}
Expand Down

0 comments on commit 26832e3

Please sign in to comment.