You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@
18
18
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)
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
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
82
82
[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).
83
83
84
84
<detailsopen>
@@ -87,7 +87,7 @@ If you are not using convention plugins and would like a quick way of testing th
87
87
88
88
```groovy
89
89
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
91
91
}
92
92
93
93
subprojects {
@@ -103,7 +103,7 @@ subprojects {
103
103
104
104
```kotlin
105
105
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
0 commit comments