Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump supported AGP version from 8.2.0-rc03 to 8.2.0 #623

Merged
merged 1 commit into from
Dec 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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, 7.1, 7.2, 7.3, 7.4, 8.0, 8.1, 8.2.0-rc, and 8.3.0-alpha
* Supported Android Gradle Plugin versions: 7.0, 7.1, 7.2, 7.3, 7.4, 8.0, 8.1, 8.2, and 8.3.0-alpha
* Supported Kotlin versions: 1.7.0+

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.
2 changes: 1 addition & 1 deletion src/main/resources/versions.json
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
"8.3.0-alpha15": [
"8.5"
],
"8.2.0-rc03": [
"8.2.0": [
"8.5"
],
"8.1.4": [
2 changes: 1 addition & 1 deletion src/test/groovy/org/gradle/android/WorkaroundTest.groovy
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ class WorkaroundTest extends Specification {
where:
androidVersion | expectedWorkarounds
"8.3.0-alpha15" | ['MergeSourceSetFolders', 'JdkImage']
"8.2.0-rc03" | ['MergeSourceSetFolders', 'JdkImage', 'PackageForUnitTest']
"8.2.0" | ['MergeSourceSetFolders', 'JdkImage', 'PackageForUnitTest']
"8.1.4" | ['MergeSourceSetFolders', 'JdkImage', 'PackageForUnitTest']
"8.0.2" | ['MergeSourceSetFolders', 'ZipMergingTask', 'JdkImage', 'PackageForUnitTest']
"7.4.2" | ['MergeSourceSetFolders', 'ZipMergingTask', 'JdkImage', 'PackageForUnitTest']