File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,14 @@ Some Android plugin versions have issues with Gradle's build cache feature. When
12
12
This plugin should be applied anywhere the ` com.android.application ` or ` com.android.library ` plugins are applied. Typically,
13
13
this can just be injected from the root project's build.gradle (change '1.0.3' to the latest version of the cache fix plugin
14
14
[ here] ( https://plugins.gradle.org/plugin/org.gradle.android.cache-fix ) ):
15
- ``` $groovy
15
+
16
+ ``` groovy
16
17
plugins {
17
- id "org.gradle.android.cache-fix" version "1.0.3" apply false
18
+ id "org.gradle.android.cache-fix" version "1.0.3" apply false
18
19
}
19
20
20
21
subprojects {
21
- apply plugin: ' org.gradle.android.cache-fix`
22
+ apply plugin: " org.gradle.android.cache-fix"
22
23
}
23
24
```
24
25
You can’t perform that action at this time.
0 commit comments