Skip to content

Commit

Permalink
Merge pull request #349 from gradle/cjohnson/update-apg-7_3_0
Browse files Browse the repository at this point in the history
Update AGP 7.3.0-rc01 -> AGP 7.3.0
  • Loading branch information
runningcode authored Sep 16, 2022
2 parents 6cd61a1 + b30dae9 commit aede6c6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions 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.2, 7.3.0-rc01, 7.4.0-alpha10
* Supported Android Gradle Plugin versions: 7.0.4, 7.1.3, 7.2.2, 7.3.0, 7.4.0-alpha10
* 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 Expand Up @@ -137,7 +137,7 @@ Please star them if you are experiencing them in your project.

* Room annotation processor causes cache misses, doesn't declare outputs, overlapping outputs, etc: https://issuetracker.google.com/issues/132245929

The following issue is not fixed by the Android Cache Fix plugin since it has no workaround and is not fixed in any current or future release of the Android Gradle Plugin.
The following issue is not fixed by the Android Cache Fix plugin since it has no workaround and is not fixed in any current or future release of the Android Gradle Plugin.
* MergeResources is not relocatable: https://issuetracker.google.com/issues/236001083

## Implementation Notes
Expand Down
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.4.0-alpha10": [
"7.5.1"
],
"7.3.0-rc01": [
"7.3.0": [
"7.4.2",
"7.5.1"
],
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.4.0-alpha10" | ['MergeSourceSetFolders', 'RoomSchemaLocation', 'ZipMergingTask']
"7.3.0-rc01" | ['MergeSourceSetFolders', 'RoomSchemaLocation', 'ZipMergingTask', 'JdkImage']
"7.3.0" | ['MergeSourceSetFolders', 'RoomSchemaLocation', 'ZipMergingTask', 'JdkImage']
"7.2.2" | ['MergeSourceSetFolders', 'RoomSchemaLocation', 'ZipMergingTask', 'JdkImage']
"7.1.3" | ['BundleLibraryClasses', 'CompileLibraryResources', 'DataBindingMergeDependencyArtifacts', 'LibraryJniLibs', 'MergeNativeLibs', 'MergeSourceSetFolders', 'RoomSchemaLocation', 'StripDebugSymbols', 'ZipMergingTask', 'JdkImage']
"7.0.4" | ['BundleLibraryClasses', 'CompileLibraryResources', 'DataBindingMergeDependencyArtifacts', 'LibraryJniLibs', 'MergeNativeLibs', 'MergeSourceSetFolders', 'RoomSchemaLocation', 'StripDebugSymbols', 'ZipMergingTask']
Expand Down

0 comments on commit aede6c6

Please sign in to comment.