Skip to content

Commit d3138bc

Browse files
committed
Prepare for 2.6.3 release
1 parent 99f442e commit d3138bc

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
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)
1919

2020
* Supported Gradle versions: 7.0+
21-
* Supported Android Gradle Plugin versions: 7.0.4, 7.1.3, 7.2.2, 7.3.1, 7.4.0, 8.0.0-beta01, and 8.1.0-alpha02
21+
* Supported Android Gradle Plugin versions: 7.0.4, 7.1.3, 7.2.2, 7.3.1, 7.4.0, 8.0.0-beta01, and 8.1.0-alpha02
2222
* Supported Kotlin versions: 1.6.0+
2323

2424
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.
@@ -44,7 +44,7 @@ This plugin should be applied anywhere the `com.android.application` or `com.and
4444
// in build.grade for convention plugin build
4545
dependencies {
4646
// ...
47-
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.6.2")
47+
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.6.3")
4848
// ...
4949
}
5050
@@ -65,7 +65,7 @@ plugins {
6565
// in build.grade.kts for convention plugin build
6666
dependencies {
6767
// ...
68-
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.6.2")
68+
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.6.3")
6969
// ...
7070
}
7171

@@ -78,7 +78,7 @@ plugins {
7878
```
7979
</details>
8080

81-
If you are not using convention plugins and would like a quick way of testing the plugin you can alternatively place it in the root project's build.gradle (change '2.6.2' to the latest version of the cache fix plugin
81+
If you are not using convention plugins and would like a quick way of testing the plugin you can alternatively place it in the root project's build.gradle (change '2.6.3' to the latest version of the cache fix plugin
8282
[here](https://plugins.gradle.org/plugin/org.gradle.android.cache-fix)). We discourage this approach because it uses [cross project configuration](https://docs.gradle.org/current/userguide/sharing_build_logic_between_subprojects.html#sec:convention_plugins_vs_cross_configuration).
8383

8484
<details open>
@@ -87,7 +87,7 @@ If you are not using convention plugins and would like a quick way of testing th
8787

8888
```groovy
8989
plugins {
90-
id "org.gradle.android.cache-fix" version "2.6.2" apply false
90+
id "org.gradle.android.cache-fix" version "2.6.3" apply false
9191
}
9292
9393
subprojects {
@@ -103,7 +103,7 @@ subprojects {
103103

104104
```kotlin
105105
plugins {
106-
id("org.gradle.android.cache-fix") version "2.6.2" apply false
106+
id("org.gradle.android.cache-fix") version "2.6.3" apply false
107107
}
108108

109109
subprojects {

release/changes.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
- [NEW] - Support AGP 8.1.0-alpha02 and 8.0.0-beta01
1+
- [NEW] - Support AGP 8.1.0-alpha02 and 8.0.0-beta01
2+
- [FIX] - Cache miss with AGP 7.4 (#416)

0 commit comments

Comments
 (0)